mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
26 lines
704 B
Ruby
26 lines
704 B
Ruby
require 'hoe'
|
|
|
|
HOE = Hoe.spec 'puma' do
|
|
self.rubyforge_name = 'puma'
|
|
developer 'Evan Phoenix', 'evan@phx.io'
|
|
|
|
spec_extras[:extensions] = ["ext/http11/extconf.rb"]
|
|
spec_extras[:executables] = ['puma']
|
|
|
|
extra_rdoc_files << 'LICENSE'
|
|
|
|
extra_deps << ['gem_plugin', '~> 0.2.3']
|
|
extra_deps << ['daemons', '~> 1.0.10']
|
|
|
|
extra_dev_deps << ['rake-compiler', "~> 0.7.0"]
|
|
|
|
clean_globs.push('test_*.log', 'log')
|
|
end
|
|
|
|
file "#{HOE.spec.name}.gemspec" => ['Rakefile', 'tasks/gem.rake'] do |t|
|
|
puts "Generating #{t.name}"
|
|
File.open(t.name, 'w') { |f| f.puts HOE.spec.to_yaml }
|
|
end
|
|
|
|
desc "Generate or update the standalone gemspec file for the project"
|
|
task :gemspec => ["#{HOE.spec.name}.gemspec"]
|