Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let's get rid of Jeweler #25

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 2 additions & 11 deletions Gemfile
@@ -1,14 +1,5 @@
source :rubygems

gem 'rake'
gem 'rdoc'
# Specify your gem's dependencies in big_sitemap.gemspec
gemspec

group :development do
gem 'jeweler'
end

group :test do
gem 'shoulda'
gem 'mocha'
gem 'nokogiri'
end
18 changes: 7 additions & 11 deletions Gemfile.lock
@@ -1,27 +1,23 @@
PATH
remote: .
specs:
big_sitemap (1.0.0)

GEM
remote: http://rubygems.org/
specs:
git (1.2.5)
jeweler (1.6.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
json (1.6.1)
mocha (0.9.10)
rake
nokogiri (1.4.4)
rake (0.8.7)
rdoc (3.11)
json (~> 1.4)
shoulda (2.11.3)

PLATFORMS
ruby

DEPENDENCIES
jeweler
big_sitemap!
bundler
mocha
nokogiri
rake
rdoc
shoulda
17 changes: 1 addition & 16 deletions Rakefile
@@ -1,19 +1,4 @@
require 'rake'

begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "big_sitemap"
s.summary = %Q{A Sitemap generator specifically designed for large sites (although it works equally well with small sites)}
s.email = %w(alexrabarts@gmail.com tobi@soundcloud.com)
s.homepage = "http://github.com/alexrabarts/big_sitemap"
s.description = "A Sitemap generator specifically designed for large sites (although it works equally well with small sites)"
s.authors = ["Alex Rabarts", "Tobias Bielohlawek"]
s.add_dependency 'bundler'
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
require 'bundler/gem_tasks'

require 'rdoc/task'
RDoc::Task.new do |rdoc|
Expand Down
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
1.0.0
5 changes: 0 additions & 5 deletions VERSION.yml

This file was deleted.

63 changes: 13 additions & 50 deletions big_sitemap.gemspec
@@ -1,59 +1,22 @@
# 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.0"
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.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Alex Rabarts", "Tobias Bielohlawek"]
s.date = "2011-10-24"
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",
"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.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.11"
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