1
0
mirror of https://github.com/jordansissel/fpm synced 2025-04-20 13:28:00 +02:00
fpm/fpm.gemspec
Jordan Sissel 162d4661ac - bump
2011-01-04 01:30:15 -08:00

25 lines
683 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.4"
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.executables << "fpm-npm"
spec.author = "Jordan Sissel"
spec.email = "jls@semicomplete.com"
spec.homepage = "https://github.com/jordansissel/fpm"
end