Skip to content

Commit

Permalink
Preparing for 0.4.0.pre release
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Feb 10, 2010
1 parent aa0080e commit 243d85c
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 25 deletions.
6 changes: 3 additions & 3 deletions gem/Rakefile
Expand Up @@ -21,7 +21,7 @@ begin
gem.authors = ["Nick Quaranto"]
gem.files = FileList["lib/rubygems_plugin.rb",
"lib/gemcutter.rb",
"lib/commands/*",
"lib/rubygems/commands/*",
"test/*_helper.rb",
"test/*_test.rb",
"MIT-LICENSE",
Expand All @@ -39,8 +39,8 @@ begin
Thanks for installing Gemcutter! You can now run:
gem push publish your gems for the world to use and enjoy
gem owner allow/disallow others to push to your gems
gem push merged into RubyGems 1.3.6
gem owner merged into RubyGems 1.3.6
gem webhook register urls to be pinged when gems are pushed
========================================================================
Expand Down
25 changes: 10 additions & 15 deletions gem/gemcutter.gemspec
Expand Up @@ -5,26 +5,21 @@

Gem::Specification.new do |s|
s.name = %q{gemcutter}
s.version = "0.3.0"
s.version = "0.4.0.pre"

s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6.pre.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Nick Quaranto"]
s.date = %q{2010-01-05}
s.date = %q{2010-02-10}
s.description = %q{Adds several commands to RubyGems for managing gems and more on Gemcutter.org.}
s.email = %q{nick@quaran.to}
s.files = [
"MIT-LICENSE",
"Rakefile",
"lib/commands/abstract_command.rb",
"lib/commands/migrate.rb",
"lib/commands/owner.rb",
"lib/commands/push.rb",
"lib/commands/tumble.rb",
"lib/commands/webhook.rb",
"lib/gemcutter.rb",
"lib/rubygems/commands/migrate.rb",
"lib/rubygems/commands/tumble.rb",
"lib/rubygems/commands/webhook.rb",
"lib/rubygems_plugin.rb",
"test/abstract_command_test.rb",
"test/command_helper.rb",
"test/push_command_test.rb",
"test/webhook_command_test.rb"
]
s.homepage = %q{http://gemcutter.org}
Expand All @@ -33,16 +28,16 @@ Gem::Specification.new do |s|
Thanks for installing Gemcutter! You can now run:
gem push publish your gems for the world to use and enjoy
gem owner allow/disallow others to push to your gems
gem push merged into RubyGems 1.3.6
gem owner merged into RubyGems 1.3.6
gem webhook register urls to be pinged when gems are pushed
========================================================================
}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.6.pre.1}
s.summary = %q{Commands to interact with gemcutter.org}

if s.respond_to? :specification_version then
Expand Down
3 changes: 3 additions & 0 deletions gem/lib/gemcutter.rb
@@ -1,3 +1,6 @@
require 'rubygems/command_manager'

%w[migrate tumble webhook].each do |command|
require "rubygems/commands/#{command}"
Gem::CommandManager.instance.register_command command.to_sym
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions gem/lib/rubygems_plugin.rb
@@ -1,2 +1 @@
require 'rubygems/command_manager'
require File.join(File.dirname(__FILE__), 'gemcutter')
require File.join(File.dirname(__FILE__), 'gemcutter')
5 changes: 0 additions & 5 deletions gem/test/helper.rb
Expand Up @@ -14,11 +14,6 @@

WebMock.disable_net_connect!

$:.unshift File.expand_path(File.join(File.dirname(__FILE__), ".."))
%w[migrate tumble webhook].each do |command|
require "commands/#{command}"
end

class CommandTest < ActiveSupport::TestCase
include RR::Adapters::TestUnit unless include?(RR::Adapters::TestUnit)
include WebMock
Expand Down

0 comments on commit 243d85c

Please sign in to comment.