Skip to content

Commit

Permalink
Remove Jeweler.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Dec 16, 2010
1 parent f1d0a21 commit 3591585
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 68 deletions.
18 changes: 0 additions & 18 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,3 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end

begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "responders"
s.version = Responders::VERSION.dup
s.summary = "A set of Rails 3 responders to dry up your application"
s.email = "contact@plataformatec.com.br"
s.homepage = "http://github.com/plataformatec/responders"
s.description = "A set of Rails 3 responders to dry up your application"
s.authors = ['José Valim']
s.files = FileList["lib/**/*", "MIT-LICENSE", "README.rdoc"]
end

Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end
65 changes: 15 additions & 50 deletions responders.gemspec
Original file line number Diff line number Diff line change
@@ -1,56 +1,21 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "responders/version"

Gem::Specification.new do |s|
s.name = %q{responders}
s.version = "0.6.2"
s.name = "responders"
s.version = Responders::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "A set of Rails 3 responders to dry up your application"
s.email = "contact@plataformatec.com.br"
s.homepage = "http://github.com/plataformatec/responders"
s.description = "A set of Rails 3 responders to dry up your application"
s.authors = ['José Valim']

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim"]
s.date = %q{2010-08-09}
s.description = %q{A set of Rails 3 responders to dry up your application}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"MIT-LICENSE",
"README.rdoc",
"lib/generators/rails/USAGE",
"lib/generators/rails/responders_controller_generator.rb",
"lib/generators/rails/templates/controller.rb",
"lib/generators/responders/install_generator.rb",
"lib/responders.rb",
"lib/responders/collection_responder.rb",
"lib/responders/controller_method.rb",
"lib/responders/flash_responder.rb",
"lib/responders/http_cache_responder.rb",
"lib/responders/locales/en.yml",
"lib/responders/version.rb"
]
s.homepage = %q{http://github.com/plataformatec/responders}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A set of Rails 3 responders to dry up your application}
s.test_files = [
"test/collection_responder_test.rb",
"test/controller_method_test.rb",
"test/flash_responder_test.rb",
"test/http_cache_responder_test.rb",
"test/test_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
s.rubyforge_project = "responders"

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
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"]
end

0 comments on commit 3591585

Please sign in to comment.