forked from cucumber/cucumber-rails
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
19 lines (17 loc) · 724 Bytes
/
Rakefile
File metadata and controls
19 lines (17 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "cucumber-rails"
gemspec.summary = "Cucumber Generators and Runtime for Rails"
gemspec.description = "Cucumber Generators and Runtime for Rails"
gemspec.email = "cukes@googlegroups.com"
gemspec.homepage = "http://cukes.info"
gemspec.authors = ["Dennis Blöte", "Aslak Hellesøy", "Rob Holland"]
gemspec.homepage = "http://github.com/aslakhellesoy/cucumber-rails"
gemspec.add_dependency 'cucumber', '>= 0.6.2'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }