fpm/fpm.gemspec

64 lines
2.1 KiB
Ruby
Raw Normal View History

require File.join(File.dirname(__FILE__), "lib/fpm/version")
2011-01-04 09:25:06 +08:00
Gem::Specification.new do |spec|
files = []
dirs = %w{lib bin templates}
2011-01-04 09:25:06 +08:00
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
files << "LICENSE"
files << "CONTRIBUTORS"
2011-05-18 16:23:55 +08:00
files << "CHANGELIST"
2011-01-04 09:25:06 +08:00
spec.name = "fpm"
spec.version = FPM::VERSION
2011-01-04 09:25:06 +08:00
spec.summary = "fpm - package building and mangling"
2012-03-04 09:50:17 +08:00
spec.description = "Convert directories, rpms, python eggs, rubygems, and " \
"more to rpms, debs, solaris packages and more. Win at package " \
"management without wasting pointless hours debugging bad rpm specs!"
# For parsing JSON (required for some Python support, etc)
# http://flori.github.com/json/doc/index.html
2013-03-21 11:11:22 +08:00
spec.add_dependency("json", "~> 1.7.7") # license: Ruby License
# For logging
# https://github.com/jordansissel/ruby-cabin
2013-01-22 02:56:25 +08:00
spec.add_dependency("cabin", ">= 0.6.0") # license: Apache 2
# For backports to older rubies
# https://github.com/marcandre/backports
spec.add_dependency("backports", "2.6.2") # license: MIT
# For reading and writing rpms
2013-03-21 11:11:22 +08:00
spec.add_dependency("arr-pm", "~> 0.0.8") # license: Apache 2
2013-04-30 15:25:25 +08:00
# For http stuff
spec.add_dependency("ftw", "~> 0.0.30") # license: Apache 2
2012-03-10 03:24:31 +08:00
# For command-line flag support
# https://github.com/mdub/clamp/blob/master/README.markdown
spec.add_dependency("clamp", "0.6.0") # license: MIT
2012-03-10 03:24:31 +08:00
# For starting external processes across various ruby interpreters
spec.add_dependency("childprocess") # license: ???
# For simple shell/file hackery in the tests.
# http://rush.heroku.com/rdoc/
spec.add_development_dependency("rush") # license: MIT
spec.add_development_dependency("rspec") # license: MIT (according to wikipedia)
spec.add_development_dependency("insist", "~> 0.0.5") # license: ???
spec.add_development_dependency("minitest")
2013-05-01 08:56:40 +08:00
spec.add_development_dependency("pry")
2012-03-08 16:03:04 +08:00
2011-01-04 09:25:06 +08:00
spec.files = files
spec.require_paths << "lib"
spec.bindir = "bin"
spec.executables << "fpm"
spec.author = "Jordan Sissel"
spec.email = "jls@semicomplete.com"
spec.homepage = "https://github.com/jordansissel/fpm"
end