forked from relevance/tarantula
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
67 lines (58 loc) · 2.02 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
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'micronaut'
require 'micronaut/rake_task'
begin
require 'jeweler'
files = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "VERSION.yml"]
files << Dir["examples/**/*", "laf/**/*", "lib/**/*", "tasks/**/*", "template/**/*"]
Jeweler::Tasks.new do |s|
s.name = "tarantula"
s.summary = "A big hairy fuzzy spider that crawls your site, wreaking havoc"
s.description = "A big hairy fuzzy spider that crawls your site, wreaking havoc"
s.homepage = "http://github.com/relevance/tarantula"
s.email = "opensource@thinkrelevance.com"
s.authors = ["Relevance, Inc."]
s.require_paths = ["lib"]
s.files = files.flatten
s.add_dependency 'htmlentities'
s.add_dependency 'hpricot'
s.rubyforge_project = 'thinkrelevance'
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
desc 'Generate documentation for the tarantula plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Tarantula'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
desc "Run all micronaut examples"
Micronaut::RakeTask.new :examples do |t|
t.pattern = "examples/**/*_example.rb"
end
namespace :examples do
desc "Run all micronaut examples using rcov"
Micronaut::RakeTask.new :coverage do |t|
t.pattern = "examples/**/*_example.rb"
t.rcov = true
t.rcov_opts = %[--exclude "gems/*,/Library/Ruby/*,config/*" --text-summary --sort coverage --no-validator-links]
end
RAILS_VERSIONS = %w[2.0.2 2.1.0 2.1.1 2.2.2 2.3.2 2.3.3]
desc "Run examples with multiple versions of rails"
task :multi_rails do
RAILS_VERSIONS.each do |rails_version|
puts
sh "RAILS_VERSION='#{rails_version}' rake examples"
end
end
end
if ENV["RUN_CODE_RUN"]
task :default => "examples:multi_rails"
else
task :default => "examples"
end