1
0
mirror of https://github.com/jordansissel/fpm synced 2025-04-28 14:48:00 +02:00
fpm/fpm.gemspec
Jordan Sissel 6fd63af88d - version bump
- remove debug output
2011-01-03 18:49:25 -08:00

24 lines
651 B
Ruby

Gem::Specification.new do |spec|
files = []
dirs = %w{lib bin templates}
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
rev = Time.now.strftime("%Y%m%d%H%M%S")
spec.name = "fpm"
spec.version = "0.1.1"
spec.summary = "fpm - package building and mangling"
spec.description = "Turn directories into packages. Fix broken packages. Win the package management game."
spec.add_dependency("json")
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