aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/oscar/conn.c
diff options
context:
space:
mode:
authorأحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>2010-10-25 13:56:45 +0200
committerأحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@users.sourceforge.net>2010-10-25 13:56:45 +0200
commit724dfceab6c174c7ba74918733b9fb9a48d70bc9 (patch)
tree78bf1c8c997bdfee711255a45ade295df1632b8d /protocols/oscar/conn.c
parent389ce9f37de662fa58ae293058e34d469e546790 (diff)
Corrected short description of bitlbee-plugin-otr
Diffstat (limited to 'protocols/oscar/conn.c')
0 files changed, 0 insertions, 0 deletions
lue='hotfix/0.20.0.12'>hotfix/0.20.0.12 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/plugins/auto_complete/Rakefile
blob: 5af4e82644fc7d4d10b4372a235276de0a249dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rake' 
require 'rake/testtask' 
require 'rake/rdoctask' 
 
desc 'Default: run unit tests.' 
task :default => :test 
 
desc 'Test auto_complete plugin.' 
Rake::TestTask.new(:test) do |t| 
  t.libs << 'lib' 
  t.pattern = 'test/**/*_test.rb' 
  t.verbose = true 
end 
 
desc 'Generate documentation for auto_complete plugin.' 
Rake::RDocTask.new(:rdoc) do |rdoc| 
  rdoc.rdoc_dir = 'rdoc' 
  rdoc.title    = 'Auto Complete' 
  rdoc.options << '--line-numbers' << '--inline-source' 
  rdoc.rdoc_files.include('README') 
  rdoc.rdoc_files.include('lib/**/*.rb') 
end