-
Notifications
You must be signed in to change notification settings - Fork 49
/
Rakefile
78 lines (69 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
require 'rake'
require 'rake/testtask'
desc 'Default: run all tests.'
task :default => :test
desc 'Run all tests.'
Rake::TestTask.new(:test) do |t|
t.libs << 'test'
t.libs << 'lib'
t.test_files = FileList['test/integration/*_test.rb', 'test/unit/*_test.rb']
t.verbose = true
end
desc 'Run unit tests.'
Rake::TestTask.new('test:unit') do |t|
t.libs << 'test'
t.libs << 'lib'
t.pattern = 'test/unit/*_test.rb'
t.verbose = true
end
desc 'Run integration tests.'
Rake::TestTask.new('test:integration') do |t|
t.libs << 'test'
t.libs << 'lib'
t.pattern = 'test/integration/*_test.rb'
t.verbose = true
end
desc 'Run temp tests.'
Rake::TestTask.new('test:temp') do |t|
t.libs << 'test'
t.libs << 'lib'
t.pattern = 'test/integration/will_paginate_search_test.rb'
t.verbose = true
end
desc 'Run performance tests.'
Rake::TestTask.new('test:performance') do |t|
t.libs << 'test'
t.libs << 'lib'
t.pattern = 'test/performance/*_test.rb'
t.verbose = true
end
begin
require 'sdoc'
desc 'Generate documentation for the acts_as_indexed plugin.'
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'ActsAsIndexed'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb')
end
rescue LoadError
puts "sdoc not installed"
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "acts_as_indexed"
gemspec.summary = "Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app"
gemspec.description = gemspec.summary
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/dougal/acts_as_indexed"
gemspec.authors = ["Douglas F Shearer"]
gemspec.files.exclude ".github/**/*"
gemspec.files.exclude ".travis.yml"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end