forked from mbleigh/acts-as-taggable-on
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
59 lines (51 loc) · 1.77 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
begin
# Rspec 1.3.0
require 'spec/rake/spectask'
desc 'Default: run specs'
task :default => :spec
Spec::Rake::SpecTask.new do |t|
t.spec_files = FileList["spec/**/*_spec.rb"]
end
Spec::Rake::SpecTask.new('rcov') do |t|
t.spec_files = FileList["spec/**/*_spec.rb"]
t.rcov = true
t.rcov_opts = ['--exclude', 'spec']
end
rescue LoadError
# Rspec 2.0
require 'rspec/core/rake_task'
desc 'Default: run specs'
task :default => :spec
Rspec::Core::RakeTask.new do |t|
t.pattern = "spec/**/*_spec.rb"
end
Rspec::Core::RakeTask.new('rcov') do |t|
t.pattern = "spec/**/*_spec.rb"
t.rcov = true
t.rcov_opts = ['--exclude', 'spec']
end
rescue LoadError
puts "Rspec not available. Install it with: gem install rspec"
end
namespace 'rails2.3' do
task :spec do
gemfile = File.join(File.dirname(__FILE__), 'lib', 'acts_as_taggable_on', 'compatibility', 'Gemfile')
ENV['BUNDLE_GEMFILE'] = gemfile
Rake::Task['spec'].invoke
end
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "acts-as-taggable-on"
gemspec.summary = "ActsAsTaggableOn is a tagging plugin for Rails that provides multiple tagging contexts on a single model."
gemspec.description = "With ActsAsTaggableOn, you could tag a single model on several contexts, such as skills, interests, and awards. It also provides other advanced functionality."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/mbleigh/acts-as-taggable-on"
gemspec.authors = ["Michael Bleigh"]
gemspec.files = FileList["[A-Z]*", "{generators,lib,spec,rails}/**/*"] - FileList["**/*.log"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end