bzip2-ruby.gemspec in bzip2-ruby-0.2.6 vs bzip2-ruby.gemspec in bzip2-ruby-0.2.7

- old
+ new

@@ -1,54 +1,20 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE -# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec` # -*- encoding: utf-8 -*- +$:.push File.expand_path('../lib', __FILE__) +require 'bzip2/version' Gem::Specification.new do |s| - s.name = %q{bzip2-ruby} - s.version = "0.2.6" + s.name = 'bzip2-ruby' + s.version = Bzip2::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ['Guy Decoux', 'Brian Lopezs'] + s.email = ['seniorlopez@gmail.com'] + s.homepage = 'http://github.com/brianmario/bzip2-ruby' + s.summary = 'Ruby C bindings to libbzip2.' - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Guy Decoux", "Brian Lopez"] - s.date = %q{2009-10-06} - s.email = %q{seniorlopez@gmail.com} - s.extensions = ["ext/extconf.rb"] - s.extra_rdoc_files = [ - "CHANGELOG.rdoc", - "README.rdoc" - ] - s.files = [ - "CHANGELOG.rdoc", - "README.rdoc", - "Rakefile", - "VERSION.yml", - "bzip2-ruby.gemspec", - "ext/bzip2.c", - "ext/extconf.rb", - "lib/bzip2.rb", - "spec/reader_spec.rb", - "spec/spec_helper.rb", - "spec/writer_spec.rb", - "tasks/extconf.rake", - "tasks/extconf/bz2.rake" - ] - s.homepage = %q{http://github.com/brianmario/bzip2-ruby} - s.rdoc_options = ["--charset=UTF-8"] - s.require_paths = ["lib", "ext"] - s.rubygems_version = %q{1.3.5} - s.summary = %q{Ruby C bindings to libbzip2.} - s.test_files = [ - "spec/reader_spec.rb", - "spec/spec_helper.rb", - "spec/writer_spec.rb" - ] + s.extensions = ['ext/extconf.rb'] + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- spec/*`.split("\n") + s.require_paths = ['lib', 'ext'] - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 - - if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then - else - end - else - end + s.add_development_dependency 'rspec', '>= 2.0.0' end