config/hoe.rb in cucumber-0.1.16 vs config/hoe.rb in cucumber-0.2.0
- old
+ new
@@ -3,11 +3,11 @@
AUTHOR = 'Aslak Hellesøy' # can also be an array of Authors
EMAIL = "aslak.hellesoy@gmail.com"
DESCRIPTION = "Executable Feature scenarios"
GEM_NAME = 'cucumber' # what ppl will type to install your gem
-HOMEPATH = "http://github.com/aslakhellesoy/cucumber"
+HOMEPATH = "http://cukes.info"
RUBYFORGE_PROJECT = 'rspec'
@config_file = "~/.rubyforge/user-config.yml"
@config = nil
RUBYFORGE_USERNAME = "aslak_hellesoy"
@@ -56,10 +56,16 @@
p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store', '**/*.class', '**/*.jar'] #An array of file patterns to delete on clean.
# == Optional
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
#p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
- p.extra_deps = [ ['term-ansicolor', '>= 1.0.3'], ['treetop', '>= 1.2.4'], ['diff-lcs', '>= 1.1.2'] ]
+ p.extra_deps = [
+ ['term-ansicolor', '>= 1.0.3'],
+ ['treetop', '>= 1.2.4'],
+ ['polyglot', '>= 0.2.4'], # Remove this when Treetop no longer loads polyglot by default.
+ ['diff-lcs', '>= 1.1.2'],
+ ['builder', '>= 2.1.2']
+ ]
#p.spec_extras = {} # A hash of extra values to set in the gemspec.
end
\ No newline at end of file