libvirt-ruby.gemspec in libvirt-ruby-1.0.2 vs libvirt-ruby.gemspec in libvirt-ruby-2.0.0

- old
+ new

@@ -1,22 +1,22 @@ # -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "libvirt-ruby/version" -Gem::Specification.new do |s| - s.name = "libvirt-ruby" - s.version = Libvirt::Ruby::VERSION - s.authors = %q{Paulo Henrique Lopes Ribeiro} - s.email = %q{plribeiro3000@gmail.com} - s.homepage = "" - s.summary = %q{Ruby bindings for the Libvirt C Library on the fly!} - s.description = %q{Access Libvirt's C Library through ruby bindings defined on the fly!} +Gem::Specification.new do |gem| + gem.name = "libvirt-ruby" + gem.version = Libvirt::Ruby::VERSION + gem.authors = %q{Paulo Henrique Lopes Ribeiro} + gem.email = %q{plribeiro3000@gmail.com} + gem.summary = %q{Ruby bindings for the Libvirt C Library on the fly!} + gem.description = %q{Access Libvirt's C Library through ruby bindings defined on the fly!} - 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 = %w(lib) + gem.files = `git ls-files`.split("\n") + gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + gem.require_paths = %w(lib) - s.add_runtime_dependency "ffi", "> 1.0.0" - s.add_development_dependency "rake" - s.add_development_dependency "rspec", "2.5.0" + gem.add_runtime_dependency "ffi", "> 1.0.0" + gem.add_development_dependency "rake" + gem.add_development_dependency "rspec", "> 2.5.0" + gem.add_development_dependency 'coveralls' end \ No newline at end of file