Gem::Specification.new do |spec| files = %x{git ls-files}.split("\n") spec.name = "arr-pm" spec.version = "0.0.2" spec.summary = "RPM reader and writer library" spec.description = "This library allows to you to read and write rpm " \ "packages. Written in pure ruby because librpm is not available " \ "on all systems" spec.license = "Apache 2" spec.add_dependency "cabin", ">0" # for logging. apache 2 license spec.files = files spec.require_paths << "lib" spec.bindir = "bin" spec.authors = ["Jordan Sissel"] spec.email = ["jls@semicomplete.com"] #spec.homepage = "..." end