Commit af50cfc

mo khan <mo@mokhan.ca>
2013-05-18 00:54:14
get tests passing again
1 parent 0d738ba
lib/spank.rb
@@ -1,7 +1,7 @@
+require 'spank/lambda_behaviours.rb'
 require 'spank/component.rb'
 require 'spank/container.rb'
 require 'spank/interceptor_registration.rb'
 require 'spank/invocation.rb'
 require 'spank/ioc.rb'
-require 'spank/lambda_behaviours.rb'
 require 'spank/proxy.rb'
spec/unit/container_spec.rb
@@ -1,6 +1,6 @@
 require "spec_helper"
 
-module Booty
+module Spank
   describe Container do
     let(:sut) { Container.new }
 
spec/spec_helper.rb
@@ -0,0 +1,2 @@
+require 'fakes-rspec'
+require 'spank'
Gemfile
@@ -0,0 +1,3 @@
+source "https://rubygems.org"
+gem "rspec"
+gem 'fakes-rspec'
Gemfile.lock
@@ -0,0 +1,25 @@
+GEM
+  remote: https://rubygems.org/
+  specs:
+    developwithpassion_arrays (0.0.1)
+    diff-lcs (1.2.4)
+    fakes (1.0.5)
+      developwithpassion_arrays
+    fakes-rspec (1.0.2)
+      fakes
+      rspec
+    rspec (2.13.0)
+      rspec-core (~> 2.13.0)
+      rspec-expectations (~> 2.13.0)
+      rspec-mocks (~> 2.13.0)
+    rspec-core (2.13.1)
+    rspec-expectations (2.13.0)
+      diff-lcs (>= 1.1.3, < 2.0)
+    rspec-mocks (2.13.1)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  fakes-rspec
+  rspec