forked from nulogy/autocomplete_for
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
42 lines (37 loc) · 1.22 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "autocomplete_for"
s.summary = "Model-side logic for autocompleting belongs_to associations"
s.description = "Model-side logic for autocompleting belongs_to associations"
s.email = "[email protected]"
s.homepage = "http://github.com/sskirby/autocomplete_for"
s.rubyforge_project = 'autocomplete_for'
s.authors = ["Sean Kirby"]
s.add_dependency('activerecord', '~> 2.3.4')
s.add_development_dependency('pg')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler or Gemcutter not available. Install it with: gem install jeweler gemcutter"
end
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the autocomplete_for plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
desc 'Generate documentation for the autocomplete_for plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'AutocompleteFor'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.markdown')
rdoc.rdoc_files.include('lib/**/*.rb')
end