Skip to content

Commit

Permalink
woah dude! whats going on here, V2, thats what!
Browse files Browse the repository at this point in the history
  • Loading branch information
reddavis committed Jun 30, 2010
1 parent f70b059 commit d604531
Show file tree
Hide file tree
Showing 28 changed files with 552 additions and 458 deletions.
2 changes: 2 additions & 0 deletions .bundle/config
@@ -0,0 +1,2 @@
---
BUNDLE_WITHOUT: ""
262 changes: 262 additions & 0 deletions .bundle/environment.rb
@@ -0,0 +1,262 @@
# DO NOT MODIFY THIS FILE
# Generated by Bundler 0.9.26

require 'digest/sha1'
require 'yaml'
require 'pathname'
require 'rubygems'
Gem.source_index # ensure Rubygems is fully loaded in Ruby 1.9

module Gem
class Dependency
if !instance_methods.map { |m| m.to_s }.include?("requirement")
def requirement
version_requirements
end
end
end
end

module Bundler
class Specification < Gem::Specification
attr_accessor :relative_loaded_from

def self.from_gemspec(gemspec)
spec = allocate
gemspec.instance_variables.each do |ivar|
spec.instance_variable_set(ivar, gemspec.instance_variable_get(ivar))
end
spec
end

def loaded_from
return super unless relative_loaded_from
source.path.join(relative_loaded_from).to_s
end

def full_gem_path
Pathname.new(loaded_from).dirname.expand_path.to_s
end
end

module SharedHelpers
attr_accessor :gem_loaded

def default_gemfile
gemfile = find_gemfile
gemfile or raise GemfileNotFound, "Could not locate Gemfile"
Pathname.new(gemfile)
end

def in_bundle?
find_gemfile
end

def env_file
default_gemfile.dirname.join(".bundle/environment.rb")
end

private

def find_gemfile
return ENV['BUNDLE_GEMFILE'] if ENV['BUNDLE_GEMFILE']

previous = nil
current = File.expand_path(Dir.pwd)

until !File.directory?(current) || current == previous
filename = File.join(current, 'Gemfile')
return filename if File.file?(filename)
current, previous = File.expand_path("..", current), current
end
end

def clean_load_path
# handle 1.9 where system gems are always on the load path
if defined?(::Gem)
me = File.expand_path("../../", __FILE__)
$LOAD_PATH.reject! do |p|
next if File.expand_path(p).include?(me)
p != File.dirname(__FILE__) &&
Gem.path.any? { |gp| p.include?(gp) }
end
$LOAD_PATH.uniq!
end
end

def reverse_rubygems_kernel_mixin
# Disable rubygems' gem activation system
::Kernel.class_eval do
if private_method_defined?(:gem_original_require)
alias rubygems_require require
alias require gem_original_require
end

undef gem
end
end

def cripple_rubygems(specs)
reverse_rubygems_kernel_mixin

executables = specs.map { |s| s.executables }.flatten
Gem.source_index # ensure RubyGems is fully loaded

::Kernel.class_eval do
private
def gem(*) ; end
end

::Kernel.send(:define_method, :gem) do |dep, *reqs|
if executables.include? File.basename(caller.first.split(':').first)
return
end
opts = reqs.last.is_a?(Hash) ? reqs.pop : {}

unless dep.respond_to?(:name) && dep.respond_to?(:requirement)
dep = Gem::Dependency.new(dep, reqs)
end

spec = specs.find { |s| s.name == dep.name }

if spec.nil?
e = Gem::LoadError.new "#{dep.name} is not part of the bundle. Add it to Gemfile."
e.name = dep.name
e.version_requirement = dep.requirement
raise e
elsif dep !~ spec
e = Gem::LoadError.new "can't activate #{dep}, already activated #{spec.full_name}. " \
"Make sure all dependencies are added to Gemfile."
e.name = dep.name
e.version_requirement = dep.requirement
raise e
end

true
end

# === Following hacks are to improve on the generated bin wrappers ===

# Yeah, talk about a hack
source_index_class = (class << Gem::SourceIndex ; self ; end)
source_index_class.send(:define_method, :from_gems_in) do |*args|
source_index = Gem::SourceIndex.new
source_index.spec_dirs = *args
source_index.add_specs(*specs)
source_index
end

# OMG more hacks
gem_class = (class << Gem ; self ; end)
gem_class.send(:define_method, :bin_path) do |name, *args|
exec_name, *reqs = args

spec = nil

if exec_name
spec = specs.find { |s| s.executables.include?(exec_name) }
spec or raise Gem::Exception, "can't find executable #{exec_name}"
else
spec = specs.find { |s| s.name == name }
exec_name = spec.default_executable or raise Gem::Exception, "no default executable for #{spec.full_name}"
end

gem_bin = File.join(spec.full_gem_path, spec.bindir, exec_name)
gem_from_path_bin = File.join(File.dirname(spec.loaded_from), spec.bindir, exec_name)
File.exist?(gem_bin) ? gem_bin : gem_from_path_bin
end
end

extend self
end
end

module Bundler
ENV_LOADED = true
LOCKED_BY = '0.9.26'
FINGERPRINT = "f8b6b67084e976b3756da50efafd65f1736409c7"
HOME = '/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/bundler'
AUTOREQUIRES = {:test=>[["rspec", false], ["webmock", false]], :simple=>[["httparty", false]], :default=>[["crack", false], ["json", false]], :multi=>[["typhoeus", false]]}
SPECS = [
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/addressable-2.1.2.gemspec", :name=>"addressable", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/addressable-2.1.2/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/crack-0.1.7.gemspec", :name=>"crack", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/crack-0.1.7/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/httparty-0.6.0.gemspec", :name=>"httparty", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/httparty-0.6.0/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/json-1.4.3.gemspec", :name=>"json", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/json-1.4.3/ext/json/ext", "/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/json-1.4.3/ext", "/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/json-1.4.3/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/rack-1.2.1.gemspec", :name=>"rack", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/rack-1.2.1/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/rspec-1.3.0.gemspec", :name=>"rspec", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/typhoeus-0.1.27.gemspec", :name=>"typhoeus", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/typhoeus-0.1.27/lib"]},
{:loaded_from=>"/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/specifications/webmock-1.3.0.gemspec", :name=>"webmock", :load_paths=>["/Users/reddavis/.rvm/gems/ruby-1.8.7-p249/gems/webmock-1.3.0/lib"]},
].map do |hash|
if hash[:virtual_spec]
spec = eval(hash[:virtual_spec], TOPLEVEL_BINDING, "<virtual spec for '#{hash[:name]}'>")
else
dir = File.dirname(hash[:loaded_from])
spec = Dir.chdir(dir){ eval(File.read(hash[:loaded_from]), TOPLEVEL_BINDING, hash[:loaded_from]) }
end
spec.loaded_from = hash[:loaded_from]
spec.require_paths = hash[:load_paths]
if spec.loaded_from.include?(HOME)
Bundler::Specification.from_gemspec(spec)
else
spec
end
end

extend SharedHelpers

def self.configure_gem_path_and_home(specs)
# Fix paths, so that Gem.source_index and such will work
paths = specs.map{|s| s.installation_path }
paths.flatten!; paths.compact!; paths.uniq!; paths.reject!{|p| p.empty? }
ENV['GEM_PATH'] = paths.join(File::PATH_SEPARATOR)
ENV['GEM_HOME'] = paths.first
Gem.clear_paths
end

def self.match_fingerprint
lockfile = File.expand_path('../../Gemfile.lock', __FILE__)
lock_print = YAML.load(File.read(lockfile))["hash"] if File.exist?(lockfile)
gem_print = Digest::SHA1.hexdigest(File.read(File.expand_path('../../Gemfile', __FILE__)))

unless gem_print == lock_print
abort 'Gemfile changed since you last locked. Please run `bundle lock` to relock.'
end

unless gem_print == FINGERPRINT
abort 'Your bundled environment is out of date. Run `bundle install` to regenerate it.'
end
end

def self.setup(*groups)
match_fingerprint
clean_load_path
cripple_rubygems(SPECS)
configure_gem_path_and_home(SPECS)
SPECS.each do |spec|
Gem.loaded_specs[spec.name] = spec
spec.require_paths.each do |path|
$LOAD_PATH.unshift(path) unless $LOAD_PATH.include?(path)
end
end
self
end

def self.require(*groups)
groups = [:default] if groups.empty?
groups.each do |group|
(AUTOREQUIRES[group.to_sym] || []).each do |file, explicit|
if explicit
Kernel.require file
else
begin
Kernel.require file
rescue LoadError
end
end
end
end
end

# Set up load paths unless this file is being loaded after the Bundler gem
setup unless defined?(Bundler::GEM_LOADED)
end
18 changes: 18 additions & 0 deletions Gemfile
@@ -0,0 +1,18 @@
# A sample Gemfile
source :gemcutter
#
gem "json"
gem "crack", "0.1.7"

group :simple do
gem "httparty", "0.6.0"
end

group :multi do
gem "typhoeus"
end

group :test do
gem "webmock", "1.3.0"
gem "rspec"
end
47 changes: 47 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,47 @@
---
dependencies:
httparty:
group:
- :simple
version: = 0.6.0
rspec:
group:
- :test
version: ">= 0"
crack:
group:
- :default
version: = 0.1.7
json:
group:
- :default
version: ">= 0"
typhoeus:
group:
- :multi
version: ">= 0"
webmock:
group:
- :test
version: = 1.3.0
specs:
- addressable:
version: 2.1.2
- crack:
version: 0.1.7
- httparty:
version: 0.6.0
- json:
version: 1.4.3
- rack:
version: 1.2.1
- rspec:
version: 1.3.0
- typhoeus:
version: 0.1.27
- webmock:
version: 1.3.0
hash: f8b6b67084e976b3756da50efafd65f1736409c7
sources:
- Rubygems:
uri: http://gemcutter.org

0 comments on commit d604531

Please sign in to comment.