forked from mbleigh/acts-as-taggable-on
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathRakefile
33 lines (29 loc) · 1.09 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
begin # 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
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"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end