invo-sporknife 0.1.0.1 → 0.1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +12 -40
- data/bin/{spork → sporknife} +0 -0
- data/features/at_exit_during_each_run.feature +2 -3
- data/features/cucumber_rails_integration.feature +18 -7
- data/features/rails_delayed_loading_workarounds.feature +13 -48
- data/features/rspec_rails_integration.feature +9 -8
- data/features/spork_debugger.feature +6 -6
- data/features/steps/rails_steps.rb +4 -18
- data/features/steps/sandbox_steps.rb +5 -5
- data/features/support/env.rb +19 -13
- data/lib/spork.rb +12 -12
- data/lib/spork/app_framework.rb +1 -4
- data/lib/spork/app_framework/rails.rb +117 -41
- data/lib/spork/app_framework/rails_stub_files/application.rb +1 -0
- data/lib/spork/app_framework/rails_stub_files/application_controller.rb +22 -0
- data/lib/spork/app_framework/rails_stub_files/application_helper.rb +3 -0
- data/lib/spork/run_strategy.rb +1 -1
- data/lib/spork/run_strategy/magazine.rb +25 -44
- data/lib/spork/run_strategy/magazine/magazine_slave_provider.rb +19 -16
- data/lib/spork/runner.rb +1 -1
- data/lib/spork/server.rb +0 -2
- data/lib/spork/test_framework.rb +5 -5
- data/lib/spork/test_framework/cucumber.rb +4 -4
- data/spec/spec_helper.rb +2 -7
- data/spec/spork/app_framework/rails_spec.rb +4 -4
- data/spec/spork/forker_spec.rb +1 -1
- data/spec/spork/run_strategy/forking_spec.rb +1 -1
- data/spec/spork/test_framework/cucumber_spec.rb +1 -1
- data/spec/spork/test_framework/rspec_spec.rb +1 -1
- data/spec/spork/test_framework_spec.rb +24 -0
- data/spec/spork_spec.rb +5 -7
- metadata +12 -18
- data/Gemfile +0 -6
- data/features/gemfiles/rails3.0/Gemfile +0 -10
- data/features/gemfiles/rails3.0/Gemfile.lock +0 -116
- data/features/support/bundler_helpers.rb +0 -41
- data/spec/spork/test_framework_shared_examples.rb +0 -23
@@ -4,24 +4,27 @@ require 'rinda/ring'
|
|
4
4
|
require 'rinda/tuplespace'
|
5
5
|
require 'magazine_slave'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
#
|
7
|
+
class MagazineSlaveProvider
|
8
|
+
def initialize(id, app_pwd, test_framework_short_name)
|
9
|
+
# start up the Rinda service
|
10
|
+
|
11
|
+
DRb.start_service
|
12
|
+
|
13
|
+
Dir.chdir app_pwd
|
14
|
+
puts " -- build slave #{id}..."; $stdout.flush
|
15
|
+
magazine_slave = MagazineSlave.new(id, test_framework_short_name )
|
16
|
+
Rinda::RingProvider.new(:MagazineSlave, magazine_slave, id).provide
|
17
|
+
|
18
|
+
puts " --> DRb magazine_slave_service: #{id} provided..."; $stdout.flush
|
19
|
+
|
20
|
+
# wait for the DRb service to finish before exiting
|
21
|
+
DRb.thread.join
|
22
|
+
end
|
23
|
+
end
|
10
24
|
|
11
25
|
id = ARGV[0].to_i || "?"
|
12
26
|
app_pwd = ARGV[1]
|
13
27
|
test_framework_short_name = ARGV[2]
|
14
28
|
|
15
|
-
#
|
16
|
-
|
17
|
-
DRb.start_service
|
18
|
-
|
19
|
-
Dir.chdir app_pwd
|
20
|
-
puts " -- build slave #{id}..."; $stdout.flush
|
21
|
-
magazine_slave = MagazineSlave.new(id, test_framework_short_name )
|
22
|
-
Rinda::RingProvider.new(:MagazineSlave, magazine_slave, id).provide
|
23
|
-
|
24
|
-
puts " --> DRb magazine_slave_service: #{id} provided..."; $stdout.flush
|
25
|
-
|
26
|
-
# wait for the DRb service to finish before exiting
|
27
|
-
DRb.thread.join
|
29
|
+
# Create slave provider
|
30
|
+
MagazineSlaveProvider.new(id, app_pwd, test_framework_short_name)
|
data/lib/spork/runner.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'optparse'
|
2
|
-
require 'stringio'
|
3
2
|
|
4
3
|
module Spork
|
5
4
|
# This is used by bin/spork. It's wrapped in a class because it's easier to test that way.
|
@@ -70,6 +69,7 @@ module Spork
|
|
70
69
|
Spork::Diagnoser.output_results(@output)
|
71
70
|
return true
|
72
71
|
else
|
72
|
+
Spork.using_spork!
|
73
73
|
run_strategy = Spork::RunStrategy.factory(test_framework)
|
74
74
|
return(false) unless run_strategy.preload
|
75
75
|
Spork::Server.run(:port => @options[:port] || test_framework.default_port, :run_strategy => run_strategy)
|
data/lib/spork/server.rb
CHANGED
@@ -44,9 +44,7 @@ class Spork::Server
|
|
44
44
|
#
|
45
45
|
# When implementing a test server, don't override this method: override run_tests instead.
|
46
46
|
def run(argv, stderr, stdout)
|
47
|
-
puts "Running tests with args #{argv.inspect}..."
|
48
47
|
run_strategy.run(argv, stderr, stdout)
|
49
|
-
puts "Done.\n\n"
|
50
48
|
end
|
51
49
|
|
52
50
|
def abort
|
data/lib/spork/test_framework.rb
CHANGED
@@ -9,7 +9,7 @@ class Spork::TestFramework
|
|
9
9
|
|
10
10
|
class NoFrameworksAvailable < FactoryException
|
11
11
|
def message
|
12
|
-
"I can
|
12
|
+
"I can't find any testing frameworks to use. Are you running me from a project directory?"
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -19,7 +19,7 @@ class Spork::TestFramework
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def message
|
22
|
-
"I can
|
22
|
+
"I can't find the file #{@framework.helper_file} for the #{@framework.short_name} testing framework.\nAre you running me from the project directory?"
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
@@ -29,7 +29,7 @@ class Spork::TestFramework
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def message
|
32
|
-
"Couldn
|
32
|
+
"Couldn't find a supported test framework that begins with '#{@beginning_with}'"
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
@@ -118,12 +118,12 @@ class Spork::TestFramework
|
|
118
118
|
|
119
119
|
def preload
|
120
120
|
Spork.exec_prefork do
|
121
|
-
|
121
|
+
unless bootstrapped?
|
122
122
|
stderr.puts "#{helper_file} has not been bootstrapped. Run spork --bootstrap to do so."
|
123
123
|
stderr.flush
|
124
124
|
|
125
125
|
if framework.bootstrap_required?
|
126
|
-
stderr.puts "I can't do anything for you by default for the framework
|
126
|
+
stderr.puts "I can't do anything for you by default for the framework your using: #{framework.short_name}.\nYou must bootstrap #{helper_file} to continue."
|
127
127
|
stderr.flush
|
128
128
|
return false
|
129
129
|
else
|
@@ -10,15 +10,15 @@ class Spork::TestFramework::Cucumber < Spork::TestFramework
|
|
10
10
|
def preload
|
11
11
|
require 'cucumber'
|
12
12
|
begin
|
13
|
-
@
|
14
|
-
@
|
13
|
+
@runtime = ::Cucumber::Runtime.new
|
14
|
+
@runtime.load_programming_language('rb')
|
15
15
|
rescue NoMethodError => pre_cucumber_0_4 # REMOVE WHEN SUPPORT FOR PRE-0.4 IS DROPPED
|
16
|
-
@
|
16
|
+
@runtime = Spork::Server::Cucumber.mother_object
|
17
17
|
end
|
18
18
|
super
|
19
19
|
end
|
20
20
|
|
21
21
|
def run_tests(argv, stderr, stdout)
|
22
|
-
::Cucumber::Cli::Main.new(argv, stdout, stderr).execute!(@
|
22
|
+
::Cucumber::Cli::Main.new(argv, stdout, stderr).execute!(@runtime)
|
23
23
|
end
|
24
24
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -8,9 +8,8 @@ unless $spec_helper_loaded
|
|
8
8
|
require 'spork'
|
9
9
|
require 'stringio'
|
10
10
|
require 'fileutils'
|
11
|
-
require 'rspec'
|
12
11
|
|
13
|
-
|
12
|
+
Spec::Runner.configure do |config|
|
14
13
|
config.before(:each) do
|
15
14
|
$test_stdout = StringIO.new
|
16
15
|
$test_stderr = StringIO.new
|
@@ -46,14 +45,10 @@ unless $spec_helper_loaded
|
|
46
45
|
def change_current_dir(sub_path)
|
47
46
|
@current_dir = File.expand_path(sub_path, SPEC_TMP_DIR)
|
48
47
|
end
|
49
|
-
|
50
|
-
def windows?
|
51
|
-
ENV['OS'] == 'Windows_NT'
|
52
|
-
end
|
53
48
|
end
|
54
49
|
|
55
50
|
|
56
|
-
module
|
51
|
+
module Spec
|
57
52
|
module Matchers
|
58
53
|
class IncludeAStringLike
|
59
54
|
def initialize(substring_or_regex)
|
@@ -1,21 +1,21 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
2
2
|
|
3
3
|
describe Spork::AppFramework::Rails do
|
4
|
-
describe ".
|
4
|
+
describe ".version" do
|
5
5
|
it "detects the current version of rails" do
|
6
6
|
create_file("config/environment.rb", "RAILS_GEM_VERSION = '2.1.0'")
|
7
7
|
in_current_dir do
|
8
|
-
Spork::AppFramework::Rails.new.
|
8
|
+
Spork::AppFramework::Rails.new.version.should == "2.1.0"
|
9
9
|
end
|
10
10
|
|
11
11
|
create_file("config/environment.rb", 'RAILS_GEM_VERSION = "2.1.0"')
|
12
12
|
in_current_dir do
|
13
|
-
Spork::AppFramework::Rails.new.
|
13
|
+
Spork::AppFramework::Rails.new.version.should == "2.1.0"
|
14
14
|
end
|
15
15
|
|
16
16
|
create_file("config/environment.rb", 'RAILS_GEM_VERSION = "> 2.1.0"')
|
17
17
|
in_current_dir do
|
18
|
-
Spork::AppFramework::Rails.new.
|
18
|
+
Spork::AppFramework::Rails.new.version.should == "> 2.1.0"
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
data/spec/spork/forker_spec.rb
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../spec_helper'
|
2
2
|
|
3
|
+
describe "a TestFramework", :shared => true do
|
4
|
+
describe ".default_port" do
|
5
|
+
it "uses the DEFAULT_PORT when the environment variable is not set" do
|
6
|
+
@klass.default_port.should == @klass::DEFAULT_PORT
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'uses ENV["#{short_name.upcase}_DRB"] as port if present' do
|
10
|
+
env_name = "#{@klass.short_name.upcase}_DRB"
|
11
|
+
orig, ENV[env_name] = ENV[env_name], "9000"
|
12
|
+
begin
|
13
|
+
@klass.default_port.should == 9000
|
14
|
+
ensure
|
15
|
+
ENV[env_name] = orig
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe ".helper_file" do
|
21
|
+
it "returns ::HELPER_FILE for the TestFramework" do
|
22
|
+
@klass.helper_file.should == @klass::HELPER_FILE
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
3
27
|
describe Spork::TestFramework do
|
4
28
|
|
5
29
|
before(:each) do
|
data/spec/spork_spec.rb
CHANGED
@@ -3,19 +3,17 @@ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
3
3
|
Spork.class_eval do
|
4
4
|
def self.reset!
|
5
5
|
@state = nil
|
6
|
-
@using_spork = false
|
7
6
|
@already_ran = nil
|
8
|
-
@each_run_procs = nil
|
9
7
|
end
|
10
8
|
end
|
11
9
|
|
12
10
|
describe Spork do
|
13
11
|
before(:each) do
|
14
12
|
Spork.reset!
|
15
|
-
@ran = []
|
16
13
|
end
|
17
14
|
|
18
15
|
def spec_helper_simulator
|
16
|
+
@ran ||= []
|
19
17
|
Spork.prefork do
|
20
18
|
@ran << :prefork
|
21
19
|
end
|
@@ -65,14 +63,14 @@ describe Spork do
|
|
65
63
|
describe "#using_spork?" do
|
66
64
|
it "returns true if Spork is being used" do
|
67
65
|
Spork.using_spork?.should be_false
|
68
|
-
Spork.
|
66
|
+
Spork.using_spork!
|
69
67
|
Spork.using_spork?.should be_true
|
70
68
|
end
|
71
69
|
end
|
72
70
|
|
73
71
|
describe "#trap_method" do
|
74
72
|
before(:each) do
|
75
|
-
Spork.
|
73
|
+
Spork.using_spork!
|
76
74
|
|
77
75
|
Object.class_eval do
|
78
76
|
class TrapTest
|
@@ -101,7 +99,7 @@ describe Spork do
|
|
101
99
|
end
|
102
100
|
|
103
101
|
it "delays execution of a method until after Spork.exec_each_run is called" do
|
104
|
-
Spork.
|
102
|
+
Spork.using_spork!
|
105
103
|
Spork.trap_method(TrapTest, :hello)
|
106
104
|
@trap_test.hello
|
107
105
|
@trap_test.goodbye
|
@@ -142,7 +140,7 @@ describe Spork do
|
|
142
140
|
end
|
143
141
|
|
144
142
|
it "delays execution of a method until after Spork.exec_each_run is called" do
|
145
|
-
Spork.
|
143
|
+
Spork.using_spork!
|
146
144
|
Spork.trap_class_method(TrapTest, :hello)
|
147
145
|
TrapTest.hello
|
148
146
|
TrapTest.goodbye
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: invo-sporknife
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 67
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 0.1.0.
|
10
|
+
- 2
|
11
|
+
version: 0.1.0.2
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- gten
|
@@ -16,26 +16,28 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-11-
|
20
|
-
default_executable:
|
19
|
+
date: 2010-11-19 00:00:00 +05:30
|
20
|
+
default_executable: sporknife
|
21
21
|
dependencies: []
|
22
22
|
|
23
23
|
description: A forking Drb spec server. Forked from Timcharper's spork
|
24
24
|
email:
|
25
25
|
- geetan123321@gmail.com
|
26
26
|
executables:
|
27
|
-
-
|
27
|
+
- sporknife
|
28
28
|
extensions:
|
29
29
|
- ext/mkrf_conf.rb
|
30
30
|
extra_rdoc_files:
|
31
31
|
- MIT-LICENSE
|
32
32
|
- README.rdoc
|
33
33
|
files:
|
34
|
-
- Gemfile
|
35
34
|
- README.rdoc
|
36
35
|
- MIT-LICENSE
|
37
36
|
- lib/spork/app_framework/padrino.rb
|
38
37
|
- lib/spork/app_framework/rails.rb
|
38
|
+
- lib/spork/app_framework/rails_stub_files/application.rb
|
39
|
+
- lib/spork/app_framework/rails_stub_files/application_controller.rb
|
40
|
+
- lib/spork/app_framework/rails_stub_files/application_helper.rb
|
39
41
|
- lib/spork/app_framework/unknown.rb
|
40
42
|
- lib/spork/app_framework.rb
|
41
43
|
- lib/spork/custom_io_streams.rb
|
@@ -59,8 +61,6 @@ files:
|
|
59
61
|
- features/at_exit_during_each_run.feature
|
60
62
|
- features/cucumber_rails_integration.feature
|
61
63
|
- features/diagnostic_mode.feature
|
62
|
-
- features/gemfiles/rails3.0/Gemfile
|
63
|
-
- features/gemfiles/rails3.0/Gemfile.lock
|
64
64
|
- features/rails_delayed_loading_workarounds.feature
|
65
65
|
- features/rspec_rails_integration.feature
|
66
66
|
- features/spork_debugger.feature
|
@@ -68,7 +68,6 @@ files:
|
|
68
68
|
- features/steps/rails_steps.rb
|
69
69
|
- features/steps/sandbox_steps.rb
|
70
70
|
- features/support/background_job.rb
|
71
|
-
- features/support/bundler_helpers.rb
|
72
71
|
- features/support/env.rb
|
73
72
|
- features/unknown_app_framework.feature
|
74
73
|
- spec/spec_helper.rb
|
@@ -82,12 +81,11 @@ files:
|
|
82
81
|
- spec/spork/server_spec.rb
|
83
82
|
- spec/spork/test_framework/cucumber_spec.rb
|
84
83
|
- spec/spork/test_framework/rspec_spec.rb
|
85
|
-
- spec/spork/test_framework_shared_examples.rb
|
86
84
|
- spec/spork/test_framework_spec.rb
|
87
85
|
- spec/spork_spec.rb
|
88
86
|
- spec/support/fake_framework.rb
|
89
87
|
- spec/support/fake_run_strategy.rb
|
90
|
-
- bin/
|
88
|
+
- bin/sporknife
|
91
89
|
- ext/mkrf_conf.rb
|
92
90
|
has_rdoc: true
|
93
91
|
homepage: http://github.com/gten/invo-sporknife
|
@@ -119,17 +117,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
117
|
version: "0"
|
120
118
|
requirements: []
|
121
119
|
|
122
|
-
rubyforge_project:
|
120
|
+
rubyforge_project: ""
|
123
121
|
rubygems_version: 1.3.7
|
124
122
|
signing_key:
|
125
123
|
specification_version: 3
|
126
|
-
summary:
|
124
|
+
summary: invo-sporknife
|
127
125
|
test_files:
|
128
126
|
- features/at_exit_during_each_run.feature
|
129
127
|
- features/cucumber_rails_integration.feature
|
130
128
|
- features/diagnostic_mode.feature
|
131
|
-
- features/gemfiles/rails3.0/Gemfile
|
132
|
-
- features/gemfiles/rails3.0/Gemfile.lock
|
133
129
|
- features/rails_delayed_loading_workarounds.feature
|
134
130
|
- features/rspec_rails_integration.feature
|
135
131
|
- features/spork_debugger.feature
|
@@ -137,7 +133,6 @@ test_files:
|
|
137
133
|
- features/steps/rails_steps.rb
|
138
134
|
- features/steps/sandbox_steps.rb
|
139
135
|
- features/support/background_job.rb
|
140
|
-
- features/support/bundler_helpers.rb
|
141
136
|
- features/support/env.rb
|
142
137
|
- features/unknown_app_framework.feature
|
143
138
|
- spec/spec_helper.rb
|
@@ -151,7 +146,6 @@ test_files:
|
|
151
146
|
- spec/spork/server_spec.rb
|
152
147
|
- spec/spork/test_framework/cucumber_spec.rb
|
153
148
|
- spec/spork/test_framework/rspec_spec.rb
|
154
|
-
- spec/spork/test_framework_shared_examples.rb
|
155
149
|
- spec/spork/test_framework_spec.rb
|
156
150
|
- spec/spork_spec.rb
|
157
151
|
- spec/support/fake_framework.rb
|
data/Gemfile
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
source :gemcutter
|
2
|
-
gem 'sqlite3-ruby', '1.2.5'
|
3
|
-
gem 'cucumber', '0.8.5'
|
4
|
-
gem 'cucumber-rails', '0.3.2'
|
5
|
-
gem "gherkin", "2.1.4"
|
6
|
-
gem "rspec", "2.0.0.beta.20"
|
7
|
-
gem 'rspec-rails', "2.0.0.beta.20"
|
8
|
-
gem 'rails', '3.0.0'
|
9
|
-
gem 'ruby-debug', '>= 0.10.3'
|
10
|
-
gem 'spork', :path => File.expand_path("../../..", File.dirname(__FILE__))
|
@@ -1,116 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/timcharper/projects/spork
|
3
|
-
specs:
|
4
|
-
spork (0.9.0.rc2)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
abstract (1.0.0)
|
10
|
-
actionmailer (3.0.0)
|
11
|
-
actionpack (= 3.0.0)
|
12
|
-
mail (~> 2.2.5)
|
13
|
-
actionpack (3.0.0)
|
14
|
-
activemodel (= 3.0.0)
|
15
|
-
activesupport (= 3.0.0)
|
16
|
-
builder (~> 2.1.2)
|
17
|
-
erubis (~> 2.6.6)
|
18
|
-
i18n (~> 0.4.1)
|
19
|
-
rack (~> 1.2.1)
|
20
|
-
rack-mount (~> 0.6.12)
|
21
|
-
rack-test (~> 0.5.4)
|
22
|
-
tzinfo (~> 0.3.23)
|
23
|
-
activemodel (3.0.0)
|
24
|
-
activesupport (= 3.0.0)
|
25
|
-
builder (~> 2.1.2)
|
26
|
-
i18n (~> 0.4.1)
|
27
|
-
activerecord (3.0.0)
|
28
|
-
activemodel (= 3.0.0)
|
29
|
-
activesupport (= 3.0.0)
|
30
|
-
arel (~> 1.0.0)
|
31
|
-
tzinfo (~> 0.3.23)
|
32
|
-
activeresource (3.0.0)
|
33
|
-
activemodel (= 3.0.0)
|
34
|
-
activesupport (= 3.0.0)
|
35
|
-
activesupport (3.0.0)
|
36
|
-
arel (1.0.1)
|
37
|
-
activesupport (~> 3.0.0)
|
38
|
-
builder (2.1.2)
|
39
|
-
columnize (0.3.1)
|
40
|
-
cucumber (0.8.5)
|
41
|
-
builder (~> 2.1.2)
|
42
|
-
diff-lcs (~> 1.1.2)
|
43
|
-
gherkin (~> 2.1.4)
|
44
|
-
json_pure (~> 1.4.3)
|
45
|
-
term-ansicolor (~> 1.0.4)
|
46
|
-
cucumber-rails (0.3.2)
|
47
|
-
cucumber (>= 0.8.0)
|
48
|
-
diff-lcs (1.1.2)
|
49
|
-
erubis (2.6.6)
|
50
|
-
abstract (>= 1.0.0)
|
51
|
-
gherkin (2.1.4)
|
52
|
-
trollop (~> 1.16.2)
|
53
|
-
i18n (0.4.1)
|
54
|
-
json_pure (1.4.6)
|
55
|
-
linecache (0.43)
|
56
|
-
mail (2.2.6.1)
|
57
|
-
activesupport (>= 2.3.6)
|
58
|
-
mime-types
|
59
|
-
treetop (>= 1.4.5)
|
60
|
-
mime-types (1.16)
|
61
|
-
polyglot (0.3.1)
|
62
|
-
rack (1.2.1)
|
63
|
-
rack-mount (0.6.13)
|
64
|
-
rack (>= 1.0.0)
|
65
|
-
rack-test (0.5.4)
|
66
|
-
rack (>= 1.0)
|
67
|
-
rails (3.0.0)
|
68
|
-
actionmailer (= 3.0.0)
|
69
|
-
actionpack (= 3.0.0)
|
70
|
-
activerecord (= 3.0.0)
|
71
|
-
activeresource (= 3.0.0)
|
72
|
-
activesupport (= 3.0.0)
|
73
|
-
bundler (~> 1.0.0)
|
74
|
-
railties (= 3.0.0)
|
75
|
-
railties (3.0.0)
|
76
|
-
actionpack (= 3.0.0)
|
77
|
-
activesupport (= 3.0.0)
|
78
|
-
rake (>= 0.8.4)
|
79
|
-
thor (~> 0.14.0)
|
80
|
-
rake (0.8.7)
|
81
|
-
rspec (2.0.0.beta.20)
|
82
|
-
rspec-core (= 2.0.0.beta.20)
|
83
|
-
rspec-expectations (= 2.0.0.beta.20)
|
84
|
-
rspec-mocks (= 2.0.0.beta.20)
|
85
|
-
rspec-core (2.0.0.beta.20)
|
86
|
-
rspec-expectations (2.0.0.beta.20)
|
87
|
-
diff-lcs (>= 1.1.2)
|
88
|
-
rspec-mocks (2.0.0.beta.20)
|
89
|
-
rspec-rails (2.0.0.beta.20)
|
90
|
-
rspec (= 2.0.0.beta.20)
|
91
|
-
ruby-debug (0.10.3)
|
92
|
-
columnize (>= 0.1)
|
93
|
-
ruby-debug-base (~> 0.10.3.0)
|
94
|
-
ruby-debug-base (0.10.3)
|
95
|
-
linecache (>= 0.3)
|
96
|
-
sqlite3-ruby (1.2.5)
|
97
|
-
term-ansicolor (1.0.5)
|
98
|
-
thor (0.14.0)
|
99
|
-
treetop (1.4.8)
|
100
|
-
polyglot (>= 0.3.1)
|
101
|
-
trollop (1.16.2)
|
102
|
-
tzinfo (0.3.23)
|
103
|
-
|
104
|
-
PLATFORMS
|
105
|
-
ruby
|
106
|
-
|
107
|
-
DEPENDENCIES
|
108
|
-
cucumber (= 0.8.5)
|
109
|
-
cucumber-rails (= 0.3.2)
|
110
|
-
gherkin (= 2.1.4)
|
111
|
-
rails (= 3.0.0)
|
112
|
-
rspec (= 2.0.0.beta.20)
|
113
|
-
rspec-rails (= 2.0.0.beta.20)
|
114
|
-
ruby-debug (>= 0.10.3)
|
115
|
-
spork!
|
116
|
-
sqlite3-ruby (= 1.2.5)
|