Skip to content

Commit

Permalink
Rename bundler gem to bundler08
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Lerche committed Feb 19, 2010
1 parent 2ba4a35 commit 2690a1a
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions Rakefile
@@ -1,11 +1,11 @@
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'rubygems' unless ENV['NO_RUBYGEMS']
require 'rubygems/specification'
require 'bundler'
require 'bundler08'
require 'date'

spec = Gem::Specification.new do |s|
s.name = "bundler"
s.name = "bundler08"
s.version = Bundler::VERSION
s.authors = ["Yehuda Katz", "Carl Lerche"]
s.email = ["wycats@gmail.com", "clerche@engineyard.com"]
Expand Down
8 changes: 4 additions & 4 deletions bundler.gemspec → bundler08.gemspec
@@ -1,16 +1,16 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{bundler}
s.version = "0.8.0"
s.name = %q{bundler08}
s.version = "0.8.2"

s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version=
s.authors = ["Yehuda Katz", "Carl Lerche"]
s.date = %q{2010-01-04}
s.date = %q{2010-02-19}
s.description = %q{An easy way to vendor gem dependencies}
s.email = ["wycats@gmail.com", "clerche@engineyard.com"]
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
s.files = ["LICENSE", "README.markdown", "Rakefile", "lib/bundler/bundle.rb", "lib/bundler/cli.rb", "lib/bundler/commands/bundle_command.rb", "lib/bundler/commands/exec_command.rb", "lib/bundler/dependency.rb", "lib/bundler/dsl.rb", "lib/bundler/environment.rb", "lib/bundler/finder.rb", "lib/bundler/gem_bundle.rb", "lib/bundler/gem_ext.rb", "lib/bundler/remote_specification.rb", "lib/bundler/resolver.rb", "lib/bundler/runtime.rb", "lib/bundler/source.rb", "lib/bundler/templates/app_script.erb", "lib/bundler/templates/environment.erb", "lib/bundler/templates/environment_picker.erb", "lib/bundler.rb", "lib/rubygems_plugin.rb"]
s.files = ["LICENSE", "README.markdown", "Rakefile", "lib/bundler08/bundle.rb", "lib/bundler08/cli.rb", "lib/bundler08/commands/bundle_command.rb", "lib/bundler08/commands/exec_command.rb", "lib/bundler08/dependency.rb", "lib/bundler08/dsl.rb", "lib/bundler08/environment.rb", "lib/bundler08/finder.rb", "lib/bundler08/gem_bundle.rb", "lib/bundler08/gem_ext.rb", "lib/bundler08/remote_specification.rb", "lib/bundler08/resolver.rb", "lib/bundler08/runtime.rb", "lib/bundler08/source.rb", "lib/bundler08/templates/app_script.erb", "lib/bundler08/templates/environment.erb", "lib/bundler08/templates/environment_picker.erb", "lib/bundler08/templates/Gemfile", "lib/bundler08.rb", "lib/rubygems_plugin.rb"]
s.homepage = %q{http://github.com/wycats/bundler}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
Expand Down
24 changes: 12 additions & 12 deletions lib/bundler.rb → lib/bundler08.rb
Expand Up @@ -6,20 +6,20 @@
require "rubygems/remote_fetcher"
require "rubygems/installer"

require "bundler/gem_bundle"
require "bundler/source"
require "bundler/finder"
require "bundler/gem_ext"
require "bundler/resolver"
require "bundler/environment"
require "bundler/dsl"
require "bundler/cli"
require "bundler/bundle"
require "bundler/dependency"
require "bundler/remote_specification"
require "bundler08/gem_bundle"
require "bundler08/source"
require "bundler08/finder"
require "bundler08/gem_ext"
require "bundler08/resolver"
require "bundler08/environment"
require "bundler08/dsl"
require "bundler08/cli"
require "bundler08/bundle"
require "bundler08/dependency"
require "bundler08/remote_specification"

module Bundler
VERSION = "0.8.1"
VERSION = "0.8.2"

class << self
attr_writer :logger, :mode
Expand Down
File renamed without changes.
File renamed without changes.
Expand Up @@ -59,7 +59,7 @@ def description # :nodoc:

def execute
# Prevent the bundler from getting required unless it is actually being used
require 'bundler'
require 'bundler08'
if options[:cache]
Bundler::CLI.run(:cache, options)
elsif options[:prune]
Expand Down
Expand Up @@ -29,7 +29,7 @@ def description # :nodoc:

def execute
# Prevent the bundler from getting required unless it is actually being used
require 'bundler'
require 'bundler08'
Bundler::CLI.run(:exec, options)
end

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions lib/rubygems_plugin.rb
@@ -1,6 +1,6 @@
require 'rubygems/command_manager'
require 'bundler/commands/bundle_command'
require 'bundler/commands/exec_command'
require 'bundler08/commands/bundle_command'
require 'bundler08/commands/exec_command'

Gem::CommandManager.instance.register_command :bundle
Gem::CommandManager.instance.register_command :exec
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Expand Up @@ -3,7 +3,7 @@

require "pp"
require "rubygems"
require "bundler"
require "bundler08"
require "spec"
require "rbconfig"

Expand Down

0 comments on commit 2690a1a

Please sign in to comment.