Sha256: 36f4967fde44ef86c4a20102fc0a6dfdebc67f40a81a97e24f773c47d4842a1a

Contents?: true

Size: 1.33 KB

Versions: 10

Compression:

Stored size: 1.33 KB

Contents

%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/<%= gem_name %>'

# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('<%= gem_name %>', <%= module_name %>::VERSION) do |p|
  p.developer('<%= author %>', '<%= email %>')
  p.changes              = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  p.rubyforge_name       = p.name # TODO this is default value
  # p.extra_deps         = [
  #   ['activesupport','>= 2.0.2'],
  # ]
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"]
  ]
  <% if is_jruby -%>
  p.spec_extras['platform'] = 'jruby' # JRuby gem created, e.g. <%= gem_name %>-X.Y.Z-jruby.gem
  <% end -%>
  p.clean_globs |= %w[**/.DS_Store tmp *.log]
  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
  p.rsync_args = '-av --delete --ignore-errors'
end

require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }

# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
newgem-1.0.4 app_generators/newgem/templates/Rakefile
newgem-1.0.5 app_generators/newgem/templates/Rakefile
newgem-1.0.6 app_generators/newgem/templates/Rakefile
newgem-1.0.7 app_generators/newgem/templates/Rakefile
newgem-1.1.0 app_generators/newgem/templates/Rakefile
newgem-1.2.0 app_generators/newgem/templates/Rakefile
newgem-1.2.1 app_generators/newgem/templates/Rakefile
newgem-1.2.2 app_generators/newgem/templates/Rakefile
newgem-1.2.3 app_generators/newgem/templates/Rakefile
newgem-1.3.0 app_generators/newgem/templates/Rakefile