foreman-export-god/foreman-export-god.gemspec

24 lines
841 B
Ruby
Raw Permalink Normal View History

2012-02-01 23:47:03 +00:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "foreman-export-god"
2012-02-02 01:23:23 +00:00
s.version = "0.0.1"
2012-02-01 23:47:03 +00:00
s.authors = ["Bob Potter"]
s.email = ["bobby.potter@gmail.com"]
s.homepage = ""
2012-02-02 04:08:21 +00:00
s.summary = %q{Add the ability to export god config files to foreman}
s.description = %q{Add the ability to export god config files to foreman}
2012-02-01 23:47:03 +00:00
s.rubyforge_project = "foreman-export-god"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
2012-08-23 19:49:42 +00:00
s.add_runtime_dependency "foreman", "~> 0.41.0"
2012-02-01 23:47:03 +00:00
end