wakiki-spork 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data/Gemfile +6 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +127 -0
  4. data/assets/bootstrap.rb +29 -0
  5. data/bin/spork +20 -0
  6. data/ext/mkrf_conf.rb +26 -0
  7. data/features/at_exit_during_each_run.feature +35 -0
  8. data/features/cucumber_rails_integration.feature +111 -0
  9. data/features/diagnostic_mode.feature +41 -0
  10. data/features/gemfiles/rails3.0/Gemfile +10 -0
  11. data/features/gemfiles/rails3.0/Gemfile.lock +135 -0
  12. data/features/rails_delayed_loading_workarounds.feature +115 -0
  13. data/features/rspec_rails_integration.feature +92 -0
  14. data/features/spork_debugger.feature +108 -0
  15. data/features/steps/general_steps.rb +3 -0
  16. data/features/steps/rails_steps.rb +63 -0
  17. data/features/steps/sandbox_steps.rb +115 -0
  18. data/features/support/background_job.rb +63 -0
  19. data/features/support/bundler_helpers.rb +42 -0
  20. data/features/support/env.rb +117 -0
  21. data/features/unknown_app_framework.feature +42 -0
  22. data/lib/spork.rb +156 -0
  23. data/lib/spork/app_framework.rb +80 -0
  24. data/lib/spork/app_framework/padrino.rb +22 -0
  25. data/lib/spork/app_framework/rails.rb +167 -0
  26. data/lib/spork/app_framework/rails_stub_files/application.rb +1 -0
  27. data/lib/spork/app_framework/rails_stub_files/application_controller.rb +22 -0
  28. data/lib/spork/app_framework/rails_stub_files/application_helper.rb +3 -0
  29. data/lib/spork/app_framework/unknown.rb +6 -0
  30. data/lib/spork/custom_io_streams.rb +25 -0
  31. data/lib/spork/diagnoser.rb +105 -0
  32. data/lib/spork/ext/rails-reloader.rb +14 -0
  33. data/lib/spork/ext/ruby-debug.rb +150 -0
  34. data/lib/spork/forker.rb +71 -0
  35. data/lib/spork/run_strategy.rb +44 -0
  36. data/lib/spork/run_strategy/forking.rb +32 -0
  37. data/lib/spork/run_strategy/magazine.rb +121 -0
  38. data/lib/spork/run_strategy/magazine/magazine_slave.rb +30 -0
  39. data/lib/spork/run_strategy/magazine/magazine_slave_provider.rb +27 -0
  40. data/lib/spork/run_strategy/magazine/ring_server.rb +10 -0
  41. data/lib/spork/runner.rb +91 -0
  42. data/lib/spork/server.rb +74 -0
  43. data/lib/spork/test_framework.rb +167 -0
  44. data/lib/spork/test_framework/cucumber.rb +24 -0
  45. data/lib/spork/test_framework/rspec.rb +14 -0
  46. data/spec/spec_helper.rb +108 -0
  47. data/spec/spork/app_framework/rails_spec.rb +22 -0
  48. data/spec/spork/app_framework/unknown_spec.rb +12 -0
  49. data/spec/spork/app_framework_spec.rb +16 -0
  50. data/spec/spork/diagnoser_spec.rb +105 -0
  51. data/spec/spork/forker_spec.rb +44 -0
  52. data/spec/spork/run_strategy/forking_spec.rb +38 -0
  53. data/spec/spork/runner_spec.rb +50 -0
  54. data/spec/spork/server_spec.rb +15 -0
  55. data/spec/spork/test_framework/cucumber_spec.rb +11 -0
  56. data/spec/spork/test_framework/rspec_spec.rb +10 -0
  57. data/spec/spork/test_framework_spec.rb +114 -0
  58. data/spec/spork_spec.rb +151 -0
  59. data/spec/support/fake_framework.rb +15 -0
  60. data/spec/support/fake_run_strategy.rb +21 -0
  61. metadata +159 -0
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source :gemcutter
2
+ gem 'cucumber', '0.7.3'
3
+ gem 'gherkin', '1.0.27'
4
+ gem 'rspec', '1.3.0'
5
+ gem 'rake'
6
+ gem 'ruby-debug'
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Tim Harper
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,127 @@
1
+ = Spork
2
+
3
+ * Repository: http://github.com/timcharper/spork
4
+ * Issues: http://github.com/timcharper/spork/issues
5
+ * Changes: http://github.com/timcharper/spork/blob/master/History.txt
6
+ * Mailing list: http://groups.google.com/group/sporkgem
7
+ * Wiki: http://wiki.github.com/timcharper/spork
8
+
9
+ == SYNOPSIS:
10
+
11
+ Spork is Tim Harper's implementation of test server (similar to the script/spec_server provided by rspec-rails), except rather than using the Rails constant unloading to reload your files, it forks a copy of the server each time you run your tests. The result? Spork runs more solid: it doesn't get corrupted over time, and it properly handles modules and any voo-doo meta programming you may have put in your app.
12
+
13
+ Spork runs on POSIX systems using fork. It also runs on windows by pre-populating a pool of ready processes (referred to here as the "magazine" strategy).
14
+
15
+ == Supported Testing Frameworks
16
+
17
+ * Rspec
18
+ * Cucumber
19
+ * Test::Unit (via 'gem install spork-testunit')
20
+
21
+ And more to come! Vote for your favorite at http://github.com/timcharper/spork/issues
22
+
23
+ == Supported Application Frameworks
24
+
25
+ Actually, Spork ~can~ work with any application framework. But, it ships with hooks and helpers to help make the experience much more "out of the box"
26
+
27
+ * Rails
28
+
29
+ More can be added! Vote for your favorite at http://github.com/timcharper/spork/issues
30
+
31
+ == INSTALL:
32
+
33
+ [sudo] gem install spork
34
+
35
+ alternatively:
36
+
37
+ git clone git://github.com/timcharper/spork.git
38
+ cd spork
39
+ gem build spork.gemspec
40
+ sudo gem install spork.gemspec
41
+
42
+ == Usage
43
+
44
+ From a terminal, change to your project directory.
45
+
46
+ Then, bootstrap your spec/spec_helper.rb file.
47
+
48
+ spork --bootstrap
49
+
50
+ Next, edit spec/spec_helper.rb and follow the instructions that were put at the top.
51
+
52
+ Finally, run spork. A spec DRb server will be running!
53
+
54
+ spork
55
+
56
+ == Diagnostic mode
57
+
58
+ Initially, you may find that a few files don't reload automatically. This is because they are being loaded during Spork startup. To identify which project files are being pre-loaded, and why, run:
59
+
60
+ spork --diagnose
61
+ (or spork -d, for short)
62
+
63
+ It will output a lot of stuff. At the top you'll find a summary of all project files loaded. Down below, the stack trace for each file (how it got loaded). Spork hooks into Rails and does some magic (TM) to prevent ApplicationController observers, etc from pre-loading. Similar hooks for other ruby frameworks may come as support demands.
64
+
65
+ == Running specs over Spork
66
+
67
+ === RSpec
68
+
69
+ To get the TextMate RSpec bundle to use spork, go to config->advanced->shell variables, and add:
70
+
71
+ TM_RSPEC_OPTS=--drb.
72
+
73
+ To run from the command line, use:
74
+
75
+ spec --drb spec/lib/my_spec.rb
76
+
77
+ Or, you could add the following flag to your +spec.opts+ file.
78
+
79
+ --drb
80
+
81
+ === Cucumber
82
+
83
+ Cucumber has DRb support (see http://wiki.github.com/aslakhellesoy/cucumber/spork-and-drb )
84
+
85
+ cucumber --drb
86
+
87
+ Use this as a guideline when "Sporking" your features/support/env.rb file
88
+
89
+ http://gist.github.com/123370
90
+
91
+ == Running the Spork test suite
92
+
93
+ If you wish to hack on spork, you will want to run the automated test suite to make sure your changes don't break anything. Spork uses bundler to manage and install dependencies. To start:
94
+
95
+ bundle install
96
+
97
+ Then, to run the specs:
98
+
99
+ bundle exec spec spec/
100
+
101
+ (or, alternatively...)
102
+
103
+ bundle exec rake
104
+
105
+ === running features ===
106
+
107
+ Basically, like this:
108
+
109
+ bundle exec cucumber features
110
+
111
+ If you wish to test with another Gemfile:
112
+
113
+ GEMFILE=rails2.3 bundle exec cucumber features
114
+
115
+ Where rails2.3 is one of support/gemfiles/* (rails2.3 is the default)
116
+
117
+ == Some potential issues and ways to overcome them:
118
+
119
+ See http://wiki.github.com/timcharper/spork/troubleshooting
120
+
121
+ == Kudos to
122
+
123
+ * Ben Mabey - help with documentation, testing, suggestions, patches, and bringing Cucumber support.
124
+ * David Chelimsky - for the fine RSpec testing framework, and the original rspec-rails spec_server implementation, which Spork has built upon.
125
+ * Lead Media Partners - just for being an awesome place to work.
126
+
127
+ Spork (c) 2009 Tim Harper, released under the MIT license
@@ -0,0 +1,29 @@
1
+ require 'rubygems'
2
+ require 'spork'
3
+
4
+ Spork.prefork do
5
+ # Loading more in this block will cause your tests to run faster. However,
6
+ # if you change any configuration or code from libraries loaded here, you'll
7
+ # need to restart spork for it take effect.
8
+
9
+ end
10
+
11
+ Spork.each_run do
12
+ # This code will be run each time you run your specs.
13
+
14
+ end
15
+
16
+ # --- Instructions ---
17
+ # - Sort through your spec_helper file. Place as much environment loading
18
+ # code that you don't normally modify during development in the
19
+ # Spork.prefork block.
20
+ # - Place the rest under Spork.each_run block
21
+ # - Any code that is left outside of the blocks will be ran during preforking
22
+ # and during each_run!
23
+ # - These instructions should self-destruct in 10 seconds. If they don't,
24
+ # feel free to delete them.
25
+ #
26
+
27
+
28
+
29
+
data/bin/spork ADDED
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env ruby
2
+ require 'rubygems'
3
+
4
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib') unless $LOAD_PATH.include?(File.dirname(__FILE__) + '/../lib')
5
+
6
+ require 'spork'
7
+ require 'spork/runner'
8
+
9
+ begin
10
+ success = Spork::Runner.run(ARGV, STDOUT, STDERR)
11
+ Kernel.exit(success ? 0 : 1)
12
+ rescue SystemExit => e
13
+ Kernel.exit(e.status)
14
+ rescue Exception => e
15
+ STDERR.puts("#{e.message} (#{e.class})")
16
+ STDERR.puts(e.backtrace.join("\n"))
17
+ Kernel.exit 1
18
+ end
19
+
20
+
data/ext/mkrf_conf.rb ADDED
@@ -0,0 +1,26 @@
1
+ require 'rubygems'
2
+ require 'rubygems/command.rb'
3
+ require 'rubygems/dependency_installer.rb'
4
+ STDERR.puts "Actually, there aren't any native extensions. I'm just dynamically installing dependencies based off of your operating system"
5
+ inst = Gem::DependencyInstaller.new
6
+
7
+ # this will fail if rake isn't installed.
8
+ begin
9
+ inst.install "rake"
10
+ rescue
11
+ # oh well. Let it fail later.
12
+ end
13
+
14
+ if RUBY_PLATFORM =~ /mswin|mingw/ and RUBY_VERSION < '1.9.1'
15
+ STDERR.puts "installing windows dependencies"
16
+ begin
17
+ inst.install "win32-process", "~> 0.6.1"
18
+ rescue => e
19
+ STDERR.puts "Failed to install necessary dependency gem win32-process: #{e}"
20
+ exit(1)
21
+ end
22
+ end
23
+
24
+ f = File.open(File.join(File.dirname(__FILE__), "Rakefile"), "w") # create dummy rakefile to indicate success
25
+ f.write("task :default\n")
26
+ f.close
@@ -0,0 +1,35 @@
1
+ Feature: At exit during each run
2
+ In order to make sure at_exit hooks defined during the run get called
3
+ I want to override kernel #at_exit
4
+
5
+ Scenario: at exit
6
+
7
+ Given a file named "spec/spec_helper.rb" with:
8
+ """
9
+ require 'rubygems'
10
+ require 'spec'
11
+ Spork.prefork do
12
+ puts "loading"
13
+ at_exit { puts "prefork at_exit called" }
14
+ end
15
+
16
+ Spork.each_run do
17
+ puts "running"
18
+ at_exit { printf "first " }
19
+ at_exit { printf "second " }
20
+ end
21
+
22
+ """
23
+
24
+ And a file named "spec/did_it_work_spec.rb" with:
25
+ """
26
+ describe "Did it work?" do
27
+ it "checks to see if all worked" do
28
+ puts "ran specs"
29
+ end
30
+ end
31
+ """
32
+ When I fire up a spork instance with "spork rspec"
33
+ And I run spec --drb spec/did_it_work_spec.rb
34
+ Then the output should contain "second first"
35
+ Then the output should not contain "prefork at_exit called"
@@ -0,0 +1,111 @@
1
+ Feature: Cucumber integration with rails
2
+ As a developer using cucumber and rails
3
+ I want to use Spork with Cucumber
4
+ In order to eliminate the startup cost of my application each time I run them
5
+
6
+ Background: Sporked env.rb
7
+ Given I am in a fresh rails project named "test_rails_project"
8
+ And the application has a model, observer, route, and application helper
9
+ And a file named "features/support/env.rb" with:
10
+ """
11
+ require 'rubygems'
12
+ require 'spork'
13
+
14
+ Spork.prefork do
15
+ # Loading more in this block will cause your tests to run faster. However,
16
+ # if you change any configuration or code from libraries loaded here, you'll
17
+ # need to restart spork for it take effect.
18
+
19
+ # Sets up the Rails environment for Cucumber
20
+ ENV['RAILS_ENV'] = "features"
21
+ require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
22
+
23
+ require 'cucumber'
24
+ require 'cucumber/formatter/unicode' # Comment out this line if you don't want Cucumber Unicode support
25
+ require 'spec/rails'
26
+ require 'cucumber/rails/rspec'
27
+
28
+ #### this is for this test only #######
29
+ $loaded_stuff << 'prefork block' ######
30
+ #######################################
31
+ end
32
+
33
+ Spork.each_run do
34
+ #### this is for this test only #######
35
+ $loaded_stuff << 'each_run block' #####
36
+ #######################################
37
+ end
38
+ """
39
+ And a file named "features/cucumber_rails.feature" with:
40
+ """
41
+ Feature: cucumber rails
42
+ Scenario: did it work?
43
+ Then it should work
44
+
45
+ Scenario: did it work again?
46
+ Then it should work
47
+ """
48
+ And a file named "features/support/cucumber_rails_helper.rb" with:
49
+ """
50
+ $loaded_stuff << 'features/support/cucumber_rails_helper.rb'
51
+ """
52
+ And a file named "config/environments/features.rb" with:
53
+ """
54
+ # your cucumber env here
55
+ """
56
+ And a file named "config/database.yml" with:
57
+ """
58
+ features:
59
+ adapter: sqlite3
60
+ database: db/features.sqlite3
61
+ timeout: 5000
62
+ """
63
+ And a file named "features/step_definitions/cucumber_rails_steps.rb" with:
64
+ """
65
+ Then "it should work" do
66
+ (Rails.respond_to?(:logger) ? Rails.logger : ActionController::Base.logger).info "hey there"
67
+ $loaded_stuff.should include('ActiveRecord::Base.establish_connection')
68
+ $loaded_stuff.should include('User')
69
+ $loaded_stuff.should include('UserObserver')
70
+ $loaded_stuff.should include('ApplicationHelper')
71
+ $loaded_stuff.should include('config/routes.rb')
72
+ $loaded_stuff.should include('features/support/cucumber_rails_helper.rb')
73
+ $loaded_stuff.should include('each_run block')
74
+ $loaded_stuff.should include('prefork block')
75
+ puts "It worked!"
76
+ end
77
+
78
+ Alors /ca marche/ do
79
+ end
80
+ """
81
+ Scenario: Analyzing files were preloaded
82
+ When I run spork --diagnose
83
+ Then the output should not contain "user_observer.rb"
84
+ Then the output should not contain "user.rb"
85
+ Then the output should not contain "app/controllers/application.rb"
86
+ Then the output should not contain "app/controllers/application_controller.rb"
87
+ Then the output should not contain "app/controllers/application_helper.rb"
88
+ Then the output should not contain "config/routes.rb"
89
+ Then the output should not contain "features/step_definitions/cucumber_rails_steps.rb"
90
+ Then the output should not contain "features/support/cucumber_rails_helper.rb"
91
+
92
+ Scenario: Running spork with a rails app and no server
93
+ When I run cucumber --drb features
94
+ Then the error output should contain
95
+ """
96
+ WARNING: No DRb server is running. Running features locally
97
+ """
98
+
99
+ Scenario: Running spork with a rails app and observers
100
+ When I fire up a spork instance with "spork cucumber"
101
+ And I run cucumber --drb features
102
+ Then the error output should be empty
103
+ And the output should contain "It worked!"
104
+ And the file "log/features.log" should include "hey there"
105
+
106
+ Scenario: Running spork with a rails app and a non-standard port
107
+ When I fire up a spork instance with "spork cucumber -p 9000"
108
+ And I run cucumber --drb --port 9000 features
109
+ Then the error output should be empty
110
+ And the output should contain "It worked!"
111
+ And the file "log/features.log" should include "hey there"
@@ -0,0 +1,41 @@
1
+ Feature: Diagnostic Mode
2
+ To help a developer quickly pinpoint why files are being loaded
3
+ Spork provides a diagnostic mode
4
+ That provides a list of which project files were loaded during prefork, and who loaded them.
5
+
6
+ Scenario: Running spork --diagnose
7
+ Given I am in the directory "test_project"
8
+ And a file named "spec/spec_helper.rb" with:
9
+ """
10
+ require 'rubygems'
11
+ require 'spork'
12
+
13
+ Spork.prefork do
14
+ require 'lib/awesome.rb'
15
+ require '../external_dependency/super_duper.rb'
16
+ end
17
+
18
+ Spork.each_run do
19
+ puts "I'm loading the stuff just for this run..."
20
+ end
21
+ """
22
+ And a file named "lib/awesome.rb" with:
23
+ """
24
+ class Awesome
25
+ end
26
+ """
27
+ And a file named "../external_dependency/super_duper.rb" with:
28
+ """
29
+ class Awesome
30
+ end
31
+ """
32
+ When I run spork --diagnose
33
+ Then the error output should contain
34
+ """
35
+ Loading Spork.prefork block...
36
+ """
37
+ And the output should contain "lib/awesome.rb"
38
+ And the output should contain "spec/spec_helper.rb:5"
39
+ And the output should not contain "super_duper.rb"
40
+ And the output should not contain "diagnose.rb"
41
+
@@ -0,0 +1,10 @@
1
+ source :gemcutter
2
+ gem 'sqlite3-ruby', '1.2.5'
3
+ gem 'cucumber', '0.7.3'
4
+ gem 'cucumber-rails', '0.3.1'
5
+ gem "gherkin", "1.0.30"
6
+ gem "rspec", "2.0.0.beta.16"
7
+ gem 'rspec-rails', "2.0.0.beta.16"
8
+ gem 'rails', '3.0.0.beta4'
9
+ gem 'ruby-debug', '>= 0.10.3'
10
+ gem 'spork', :path => File.expand_path("../../..", File.dirname(__FILE__))
@@ -0,0 +1,135 @@
1
+ ---
2
+ dependencies:
3
+ spork:
4
+ group:
5
+ - :default
6
+ version: ">= 0"
7
+ ruby-debug:
8
+ group:
9
+ - :default
10
+ version: ">= 0.10.3"
11
+ rails:
12
+ group:
13
+ - :default
14
+ version: = 3.0.0.beta4
15
+ sqlite3-ruby:
16
+ group:
17
+ - :default
18
+ version: = 1.2.5
19
+ rspec:
20
+ group:
21
+ - :default
22
+ version: = 2.0.0.beta.16
23
+ rspec-rails:
24
+ group:
25
+ - :default
26
+ version: = 2.0.0.beta.16
27
+ cucumber-rails:
28
+ group:
29
+ - :default
30
+ version: = 0.3.1
31
+ gherkin:
32
+ group:
33
+ - :default
34
+ version: = 1.0.30
35
+ cucumber:
36
+ group:
37
+ - :default
38
+ version: = 0.7.3
39
+ specs:
40
+ - rake:
41
+ version: 0.8.7
42
+ - abstract:
43
+ version: 1.0.0
44
+ - activesupport:
45
+ version: 3.0.0.beta4
46
+ - builder:
47
+ version: 2.1.2
48
+ - i18n:
49
+ version: 0.4.1
50
+ - activemodel:
51
+ version: 3.0.0.beta4
52
+ - erubis:
53
+ version: 2.6.6
54
+ - rack:
55
+ version: 1.1.0
56
+ - rack-mount:
57
+ version: 0.6.6
58
+ - rack-test:
59
+ version: 0.5.4
60
+ - tzinfo:
61
+ version: 0.3.22
62
+ - actionpack:
63
+ version: 3.0.0.beta4
64
+ - mime-types:
65
+ version: "1.16"
66
+ - polyglot:
67
+ version: 0.3.1
68
+ - treetop:
69
+ version: 1.4.8
70
+ - mail:
71
+ version: 2.2.5
72
+ - actionmailer:
73
+ version: 3.0.0.beta4
74
+ - arel:
75
+ version: 0.4.0
76
+ - activerecord:
77
+ version: 3.0.0.beta4
78
+ - activeresource:
79
+ version: 3.0.0.beta4
80
+ - bundler:
81
+ version: 0.9.26
82
+ - columnize:
83
+ version: 0.3.1
84
+ - diff-lcs:
85
+ version: 1.1.2
86
+ - trollop:
87
+ version: 1.16.2
88
+ - gherkin:
89
+ version: 1.0.30
90
+ - json_pure:
91
+ version: 1.4.3
92
+ - term-ansicolor:
93
+ version: 1.0.5
94
+ - cucumber:
95
+ version: 0.7.3
96
+ - cucumber-rails:
97
+ version: 0.3.1
98
+ - linecache:
99
+ version: "0.43"
100
+ - nokogiri:
101
+ version: 1.4.2
102
+ - thor:
103
+ version: 0.13.7
104
+ - railties:
105
+ version: 3.0.0.beta4
106
+ - rails:
107
+ version: 3.0.0.beta4
108
+ - rspec-core:
109
+ version: 2.0.0.beta.16
110
+ - rspec-expectations:
111
+ version: 2.0.0.beta.16
112
+ - rspec-mocks:
113
+ version: 2.0.0.beta.16
114
+ - rspec:
115
+ version: 2.0.0.beta.16
116
+ - webrat:
117
+ version: 0.7.1
118
+ - rspec-rails:
119
+ version: 2.0.0.beta.16
120
+ - ruby-debug-base:
121
+ version: 0.10.3
122
+ - ruby-debug:
123
+ version: 0.10.3
124
+ - spork:
125
+ version: 0.8.4
126
+ source: 0
127
+ - sqlite3-ruby:
128
+ version: 1.2.5
129
+ hash: cdde3d053f230f995518b2e91e0ce1b2e9298e58
130
+ sources:
131
+ - Path:
132
+ path: !ruby/object:Pathname
133
+ path: /Users/timcharper/projects/spork
134
+ - Rubygems:
135
+ uri: http://gemcutter.org