config/hoe.rb in simonmenke-hosts-0.0.4 vs config/hoe.rb in simonmenke-hosts-0.0.5
- old
+ new
@@ -3,14 +3,15 @@
AUTHOR = 'Simon Menke' # can also be an array of Authors
EMAIL = "simon@5xm.org"
DESCRIPTION = "A simple tool to manage your hosts file"
GEM_NAME = 'hosts' # what ppl will type to install your gem
RUBYFORGE_PROJECT = 'hosts' # The unix name for your project
-HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
-DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
+HOMEPATH = "http://github.com/simonmenke/hosts/tree/master"
+# DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
EXTRA_DEPENDENCIES = [
- ['thor', '>= 0.9.2']
+ ['thor', '>= 0.9.2'],
+ ['need', '>= 1.1.0']
# ['activesupport', '>= 1.3.1']
] # An array of rubygem dependencies [name, version]
@config_file = "~/.rubyforge/user-config.yml"
@config = nil
@@ -54,16 +55,16 @@
$hoe = Hoe.new(GEM_NAME, VERS) do |p|
p.developer(AUTHOR, EMAIL)
p.description = DESCRIPTION
p.summary = DESCRIPTION
p.url = HOMEPATH
- p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
+ p.rubyforge_name = nil #RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
p.test_globs = ["test/**/test_*.rb"]
p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] #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 = EXTRA_DEPENDENCIES
+ p.extra_deps = EXTRA_DEPENDENCIES
#p.spec_extras = {} # A hash of extra values to set in the gemspec.
end
CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
\ No newline at end of file