app_generators/newgem/templates/config/hoe.rb in newgem-0.22.2 vs app_generators/newgem/templates/config/hoe.rb in newgem-0.23.0

- old
+ new

@@ -5,10 +5,13 @@ DESCRIPTION = "description of gem" GEM_NAME = '<%= gem_name %>' # what ppl will type to install your gem RUBYFORGE_PROJECT = '<%= gem_name %>' # The unix name for your project HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org" DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}" +EXTRA_DEPENDENCIES = [ +# ['activesupport', '>= 1.3.1'] +] # An array of rubygem dependencies [name, version] @config_file = "~/.rubyforge/user-config.yml" @config = nil RUBYFORGE_USERNAME = "unknown" def rubyforge_username @@ -26,25 +29,25 @@ end RUBYFORGE_USERNAME.replace @config["username"] end -REV = nil -# UNCOMMENT IF REQUIRED: +REV = nil +# UNCOMMENT IF REQUIRED: # REV = YAML.load(`svn info`)['Revision'] VERS = <%= module_name %>::VERSION::STRING + (REV ? ".#{REV}" : "") RDOC_OPTS = ['--quiet', '--title', '<%= gem_name %> documentation', "--opname", "index.html", - "--line-numbers", + "--line-numbers", "--main", "README", "--inline-source"] class Hoe - def extra_deps - @extra_deps.reject! { |x| Array(x).first == 'hoe' } + def extra_deps + @extra_deps.reject! { |x| Array(x).first == 'hoe' } @extra_deps - end + end end # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new(GEM_NAME, VERS) do |p| @@ -53,21 +56,23 @@ p.summary = DESCRIPTION p.url = HOMEPATH p.rubyforge_name = 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 = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ] - <% if is_jruby %> + #p.extra_deps = EXTRA_DEPENDENCIES + + <% if is_jruby -%> # JRuby gem created, e.g. <%= gem_name %>-X.Y.Z-jruby.gem p.spec_extras = { :platform => 'jruby' } # A hash of extra values to set in the gemspec. - <% else %> + <% else -%> #p.spec_extras = {} # A hash of extra values to set in the gemspec. - <% end %> + <% end -%> end CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n") PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}" $hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc') -$hoe.rsync_args = '-av --delete --ignore-errors' +$hoe.rsync_args = '-av --delete --ignore-errors' +$hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue "" \ No newline at end of file