big_sitemap.gemspec in big_sitemap-1.0.1 vs big_sitemap.gemspec in big_sitemap-1.0.2

- old
+ new

@@ -1,60 +1,20 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| - s.name = "big_sitemap" - s.version = "1.0.1" - - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Alex Rabarts", "Tobias Bielohlawek"] - s.date = "2012-03-10" - s.description = "A Sitemap generator specifically designed for large sites (although it works equally well with small sites)" - s.email = ["alexrabarts@gmail.com", "tobi@soundcloud.com"] - s.extra_rdoc_files = [ - "LICENSE", - "README.rdoc" - ] - s.files = [ - "Gemfile", - "Gemfile.lock", - "History.txt", - "LICENSE", - "README.rdoc", - "Rakefile", - "VERSION.yml", - "big_sitemap.gemspec", - "lib/big_sitemap.rb", - "lib/big_sitemap/builder.rb", - "test/big_sitemap_test.rb", - "test/fixtures/test_model.rb", - "test/test_helper.rb" - ] - s.homepage = "http://github.com/alexrabarts/big_sitemap" + s.name = "big_sitemap" + s.version = File.read('VERSION').strip + s.authors = ["Alex Rabarts", "Tobias Bielohlawek"] + s.email = ["alexrabarts@gmail.com", "tobi@soundcloud.com"] + s.homepage = %q{http://github.com/alexrabarts/big_sitemap} + s.summary = %q{A Sitemap generator specifically designed for large sites (although it works equally well with small sites)} + s.description = %q{BigSitemap is a Sitemapgenerator suitable for applications with greater than 50,000 URLs. It splits large Sitemaps into multiple files, gzips the files to minimize bandwidth usage, batches database queries to minimize memory usage, supports increment updates, can be set up with just a few lines of code and is compatible with just about any framework.} + 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"] - s.rubygems_version = "1.8.10" - s.summary = "A Sitemap generator specifically designed for large sites (although it works equally well with small sites)" - if s.respond_to? :specification_version then - s.specification_version = 3 - - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<rake>, [">= 0"]) - s.add_runtime_dependency(%q<rdoc>, [">= 0"]) - s.add_development_dependency(%q<jeweler>, [">= 0"]) - s.add_runtime_dependency(%q<bundler>, [">= 0"]) - else - s.add_dependency(%q<rake>, [">= 0"]) - s.add_dependency(%q<rdoc>, [">= 0"]) - s.add_dependency(%q<jeweler>, [">= 0"]) - s.add_dependency(%q<bundler>, [">= 0"]) - end - else - s.add_dependency(%q<rake>, [">= 0"]) - s.add_dependency(%q<rdoc>, [">= 0"]) - s.add_dependency(%q<jeweler>, [">= 0"]) - s.add_dependency(%q<bundler>, [">= 0"]) + ["bundler", "shoulda", "mocha", "nokogiri"].each do |gem| + s.add_development_dependency *gem.split(' ') end end -