cucumber_factory 1.8.0 → 1.8.1
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/.gitignore +1 -0
- data/Gemfile +10 -5
- data/README.rdoc +0 -0
- data/Rakefile +1 -26
- data/cucumber_factory.gemspec +13 -94
- data/lib/cucumber/factory.rb +1 -1
- data/lib/cucumber_factory/version.rb +3 -0
- data/spec/app_root/app/models/job_offer.rb +0 -0
- data/spec/app_root/app/models/machinist_model.rb +0 -0
- data/spec/app_root/app/models/opera.rb +0 -0
- data/spec/app_root/app/models/payment.rb +0 -0
- data/spec/app_root/app/models/plain_ruby_class.rb +0 -0
- data/spec/app_root/app/models/user.rb +0 -0
- data/spec/app_root/db/migrate/001_create_movies.rb +0 -0
- data/spec/app_root/db/migrate/003_create_payments.rb +0 -0
- data/spec/factory_spec.rb +1 -1
- data/spec/runtime_ext_spec.rb +1 -1
- data/spec/steps_spec.rb +4 -1
- metadata +107 -31
- data/Gemfile.lock +0 -58
- data/VERSION +0 -1
data/.gitignore
CHANGED
data/Gemfile
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
source 'http://rubygems.org'
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
gemspec
|
4
|
+
|
5
|
+
group :development do
|
6
|
+
if RUBY_VERSION > '1.9'
|
7
|
+
# normally we do not want to freeze versions in a Gem's Gemfile in this
|
8
|
+
# case, rspec-rails requires this exact test-unit version on ruby 1.9,
|
9
|
+
# without actually having it as a dependency, so we need to freeze it here
|
10
|
+
gem 'test-unit', '=1.2.3'
|
11
|
+
end
|
12
|
+
end
|
data/README.rdoc
CHANGED
File without changes
|
data/Rakefile
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require 'rake'
|
2
|
-
# require 'rake/testtask'
|
3
|
-
require 'rake/rdoctask'
|
4
2
|
require 'spec/rake/spectask'
|
3
|
+
require 'bundler/gem_tasks'
|
5
4
|
|
6
5
|
desc 'Default: Run all specs.'
|
7
6
|
task :default => :spec
|
@@ -11,27 +10,3 @@ Spec::Rake::SpecTask.new() do |t|
|
|
11
10
|
t.spec_opts = ['--options', "\"spec/support/spec.opts\""]
|
12
11
|
t.spec_files = FileList['spec/**/*_spec.rb']
|
13
12
|
end
|
14
|
-
|
15
|
-
desc 'Generate documentation for the cucumber_factory gem.'
|
16
|
-
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
-
rdoc.rdoc_dir = 'rdoc'
|
18
|
-
rdoc.title = 'cucumber_factory'
|
19
|
-
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
-
rdoc.rdoc_files.include('README')
|
21
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
-
end
|
23
|
-
|
24
|
-
begin
|
25
|
-
require 'jeweler'
|
26
|
-
Jeweler::Tasks.new do |gemspec|
|
27
|
-
gemspec.name = "cucumber_factory"
|
28
|
-
gemspec.summary = "Create records from Cucumber features without writing step definitions."
|
29
|
-
gemspec.email = "github@makandra.de"
|
30
|
-
gemspec.homepage = "http://github.com/makandra/cucumber_factory"
|
31
|
-
gemspec.description = "Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model."
|
32
|
-
gemspec.authors = ["Henning Koch"]
|
33
|
-
end
|
34
|
-
rescue LoadError
|
35
|
-
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
36
|
-
end
|
37
|
-
|
data/cucumber_factory.gemspec
CHANGED
@@ -1,106 +1,25 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "cucumber_factory/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |s|
|
7
6
|
s.name = %q{cucumber_factory}
|
8
|
-
s.version =
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
7
|
+
s.version = CucumberFactory::VERSION
|
11
8
|
s.authors = ["Henning Koch"]
|
12
|
-
s.date = %q{2011-06-12}
|
13
|
-
s.description = %q{Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.}
|
14
9
|
s.email = %q{github@makandra.de}
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
"README.rdoc"
|
17
|
-
]
|
18
|
-
s.files = [
|
19
|
-
".gitignore",
|
20
|
-
"Gemfile",
|
21
|
-
"Gemfile.lock",
|
22
|
-
"MIT-LICENSE",
|
23
|
-
"README.rdoc",
|
24
|
-
"Rakefile",
|
25
|
-
"VERSION",
|
26
|
-
"cucumber_factory.gemspec",
|
27
|
-
"lib/cucumber/factory.rb",
|
28
|
-
"lib/cucumber/runtime_ext.rb",
|
29
|
-
"lib/cucumber_factory.rb",
|
30
|
-
"spec/app_root/app/controllers/application_controller.rb",
|
31
|
-
"spec/app_root/app/models/job_offer.rb",
|
32
|
-
"spec/app_root/app/models/machinist_model.rb",
|
33
|
-
"spec/app_root/app/models/movie.rb",
|
34
|
-
"spec/app_root/app/models/opera.rb",
|
35
|
-
"spec/app_root/app/models/payment.rb",
|
36
|
-
"spec/app_root/app/models/people/actor.rb",
|
37
|
-
"spec/app_root/app/models/plain_ruby_class.rb",
|
38
|
-
"spec/app_root/app/models/user.rb",
|
39
|
-
"spec/app_root/config/boot.rb",
|
40
|
-
"spec/app_root/config/database.yml",
|
41
|
-
"spec/app_root/config/environment.rb",
|
42
|
-
"spec/app_root/config/environments/in_memory.rb",
|
43
|
-
"spec/app_root/config/environments/mysql.rb",
|
44
|
-
"spec/app_root/config/environments/postgresql.rb",
|
45
|
-
"spec/app_root/config/environments/sqlite.rb",
|
46
|
-
"spec/app_root/config/environments/sqlite3.rb",
|
47
|
-
"spec/app_root/config/routes.rb",
|
48
|
-
"spec/app_root/db/migrate/001_create_movies.rb",
|
49
|
-
"spec/app_root/db/migrate/002_create_users.rb",
|
50
|
-
"spec/app_root/db/migrate/003_create_payments.rb",
|
51
|
-
"spec/app_root/db/migrate/004_create_actors.rb",
|
52
|
-
"spec/app_root/lib/console_with_fixtures.rb",
|
53
|
-
"spec/app_root/log/.gitignore",
|
54
|
-
"spec/app_root/script/console",
|
55
|
-
"spec/factory_spec.rb",
|
56
|
-
"spec/runtime_ext_spec.rb",
|
57
|
-
"spec/spec_helper.rb",
|
58
|
-
"spec/steps_spec.rb",
|
59
|
-
"spec/support/rcov.opts",
|
60
|
-
"spec/support/spec.opts"
|
61
|
-
]
|
62
10
|
s.homepage = %q{http://github.com/makandra/cucumber_factory}
|
63
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
64
|
-
s.require_paths = ["lib"]
|
65
|
-
s.rubygems_version = %q{1.3.7}
|
66
11
|
s.summary = %q{Create records from Cucumber features without writing step definitions.}
|
67
|
-
s.
|
68
|
-
"spec/runtime_ext_spec.rb",
|
69
|
-
"spec/steps_spec.rb",
|
70
|
-
"spec/spec_helper.rb",
|
71
|
-
"spec/factory_spec.rb",
|
72
|
-
"spec/app_root/db/migrate/003_create_payments.rb",
|
73
|
-
"spec/app_root/db/migrate/001_create_movies.rb",
|
74
|
-
"spec/app_root/db/migrate/004_create_actors.rb",
|
75
|
-
"spec/app_root/db/migrate/002_create_users.rb",
|
76
|
-
"spec/app_root/app/models/movie.rb",
|
77
|
-
"spec/app_root/app/models/machinist_model.rb",
|
78
|
-
"spec/app_root/app/models/opera.rb",
|
79
|
-
"spec/app_root/app/models/job_offer.rb",
|
80
|
-
"spec/app_root/app/models/user.rb",
|
81
|
-
"spec/app_root/app/models/people/actor.rb",
|
82
|
-
"spec/app_root/app/models/payment.rb",
|
83
|
-
"spec/app_root/app/models/plain_ruby_class.rb",
|
84
|
-
"spec/app_root/app/controllers/application_controller.rb",
|
85
|
-
"spec/app_root/lib/console_with_fixtures.rb",
|
86
|
-
"spec/app_root/config/boot.rb",
|
87
|
-
"spec/app_root/config/environment.rb",
|
88
|
-
"spec/app_root/config/routes.rb",
|
89
|
-
"spec/app_root/config/environments/in_memory.rb",
|
90
|
-
"spec/app_root/config/environments/sqlite.rb",
|
91
|
-
"spec/app_root/config/environments/postgresql.rb",
|
92
|
-
"spec/app_root/config/environments/sqlite3.rb",
|
93
|
-
"spec/app_root/config/environments/mysql.rb"
|
94
|
-
]
|
12
|
+
s.description = %q{Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.}
|
95
13
|
|
96
|
-
|
97
|
-
|
98
|
-
|
14
|
+
s.files = `git ls-files`.split("\n")
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
|
+
s.require_paths = ["lib"]
|
99
18
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
19
|
+
s.add_dependency('cucumber')
|
20
|
+
s.add_development_dependency('rails', '~>2.3')
|
21
|
+
s.add_development_dependency('rspec', '<2')
|
22
|
+
s.add_development_dependency('rspec-rails', '=1.3.4')
|
23
|
+
s.add_development_dependency('sqlite3')
|
105
24
|
end
|
106
25
|
|
data/lib/cucumber/factory.rb
CHANGED
@@ -7,7 +7,7 @@ module Cucumber
|
|
7
7
|
|
8
8
|
CLEAR_NAMED_RECORDS_STEP_DESCRIPTOR = {
|
9
9
|
:kind => :Before,
|
10
|
-
:block =>
|
10
|
+
:block => proc { instance_variable_set(NAMED_RECORDS_VARIABLE, {}) }
|
11
11
|
}
|
12
12
|
|
13
13
|
NAMED_CREATION_STEP_DESCRIPTOR = {
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/factory_spec.rb
CHANGED
data/spec/runtime_ext_spec.rb
CHANGED
data/spec/steps_spec.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
3
|
require 'cucumber'
|
4
4
|
require 'cucumber/rb_support/rb_language'
|
@@ -125,6 +125,7 @@ describe 'steps provided by cucumber_factory' do
|
|
125
125
|
|
126
126
|
it "should allow to name records and set a belongs_to association to that record by refering to that name" do
|
127
127
|
invoke_cucumber_step('"Some Prequel" is a movie with the title "Before Sunrise"')
|
128
|
+
invoke_cucumber_step('there is a movie with the title "Limitless"')
|
128
129
|
invoke_cucumber_step('there is a movie with the title "Before Sunset" and the prequel "Some Prequel"')
|
129
130
|
movie = Movie.find_by_title!('Before Sunset')
|
130
131
|
prequel = Movie.find_by_title!('Before Sunrise')
|
@@ -133,6 +134,7 @@ describe 'steps provided by cucumber_factory' do
|
|
133
134
|
|
134
135
|
it "should allow to set a belongs_to association to a previously created record by refering to any string attribute of that record" do
|
135
136
|
invoke_cucumber_step('there is a movie with the title "Before Sunrise"')
|
137
|
+
invoke_cucumber_step('there is a movie with the title "Limitless"')
|
136
138
|
invoke_cucumber_step('there is a movie with the title "Before Sunset" and the prequel "Before Sunrise"')
|
137
139
|
movie = Movie.find_by_title!('Before Sunset')
|
138
140
|
prequel = Movie.find_by_title!('Before Sunrise')
|
@@ -141,6 +143,7 @@ describe 'steps provided by cucumber_factory' do
|
|
141
143
|
|
142
144
|
it "should allow to set a belongs_to association to a previously created record by saying 'above'" do
|
143
145
|
invoke_cucumber_step('there is a user with the name "Jane"')
|
146
|
+
invoke_cucumber_step('there is a movie with the title "Limitless"')
|
144
147
|
invoke_cucumber_step('there is a movie with the title "Before Sunrise"')
|
145
148
|
invoke_cucumber_step('there is a movie with the title "Before Sunset" and the reviewer above and the prequel above')
|
146
149
|
before_sunset = Movie.find_by_title!("Before Sunset")
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber_factory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 53
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 1.8.
|
9
|
+
- 1
|
10
|
+
version: 1.8.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Henning Koch
|
@@ -15,30 +15,101 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-07-24 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
|
-
dependencies:
|
21
|
-
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: cucumber
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: rails
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 5
|
44
|
+
segments:
|
45
|
+
- 2
|
46
|
+
- 3
|
47
|
+
version: "2.3"
|
48
|
+
type: :development
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: rspec
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - <
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 7
|
59
|
+
segments:
|
60
|
+
- 2
|
61
|
+
version: "2"
|
62
|
+
type: :development
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: rspec-rails
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - "="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 19
|
73
|
+
segments:
|
74
|
+
- 1
|
75
|
+
- 3
|
76
|
+
- 4
|
77
|
+
version: 1.3.4
|
78
|
+
type: :development
|
79
|
+
version_requirements: *id004
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: sqlite3
|
82
|
+
prerelease: false
|
83
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
hash: 3
|
89
|
+
segments:
|
90
|
+
- 0
|
91
|
+
version: "0"
|
92
|
+
type: :development
|
93
|
+
version_requirements: *id005
|
22
94
|
description: Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.
|
23
95
|
email: github@makandra.de
|
24
96
|
executables: []
|
25
97
|
|
26
98
|
extensions: []
|
27
99
|
|
28
|
-
extra_rdoc_files:
|
29
|
-
|
100
|
+
extra_rdoc_files: []
|
101
|
+
|
30
102
|
files:
|
31
103
|
- .gitignore
|
32
104
|
- Gemfile
|
33
|
-
- Gemfile.lock
|
34
105
|
- MIT-LICENSE
|
35
106
|
- README.rdoc
|
36
107
|
- Rakefile
|
37
|
-
- VERSION
|
38
108
|
- cucumber_factory.gemspec
|
39
109
|
- lib/cucumber/factory.rb
|
40
110
|
- lib/cucumber/runtime_ext.rb
|
41
111
|
- lib/cucumber_factory.rb
|
112
|
+
- lib/cucumber_factory/version.rb
|
42
113
|
- spec/app_root/app/controllers/application_controller.rb
|
43
114
|
- spec/app_root/app/models/job_offer.rb
|
44
115
|
- spec/app_root/app/models/machinist_model.rb
|
@@ -75,8 +146,8 @@ homepage: http://github.com/makandra/cucumber_factory
|
|
75
146
|
licenses: []
|
76
147
|
|
77
148
|
post_install_message:
|
78
|
-
rdoc_options:
|
79
|
-
|
149
|
+
rdoc_options: []
|
150
|
+
|
80
151
|
require_paths:
|
81
152
|
- lib
|
82
153
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -100,34 +171,39 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
171
|
requirements: []
|
101
172
|
|
102
173
|
rubyforge_project:
|
103
|
-
rubygems_version: 1.
|
174
|
+
rubygems_version: 1.6.2
|
104
175
|
signing_key:
|
105
176
|
specification_version: 3
|
106
177
|
summary: Create records from Cucumber features without writing step definitions.
|
107
178
|
test_files:
|
108
|
-
- spec/
|
109
|
-
- spec/
|
110
|
-
- spec/spec_helper.rb
|
111
|
-
- spec/factory_spec.rb
|
112
|
-
- spec/app_root/db/migrate/003_create_payments.rb
|
113
|
-
- spec/app_root/db/migrate/001_create_movies.rb
|
114
|
-
- spec/app_root/db/migrate/004_create_actors.rb
|
115
|
-
- spec/app_root/db/migrate/002_create_users.rb
|
116
|
-
- spec/app_root/app/models/movie.rb
|
179
|
+
- spec/app_root/app/controllers/application_controller.rb
|
180
|
+
- spec/app_root/app/models/job_offer.rb
|
117
181
|
- spec/app_root/app/models/machinist_model.rb
|
182
|
+
- spec/app_root/app/models/movie.rb
|
118
183
|
- spec/app_root/app/models/opera.rb
|
119
|
-
- spec/app_root/app/models/job_offer.rb
|
120
|
-
- spec/app_root/app/models/user.rb
|
121
|
-
- spec/app_root/app/models/people/actor.rb
|
122
184
|
- spec/app_root/app/models/payment.rb
|
185
|
+
- spec/app_root/app/models/people/actor.rb
|
123
186
|
- spec/app_root/app/models/plain_ruby_class.rb
|
124
|
-
- spec/app_root/app/
|
125
|
-
- spec/app_root/lib/console_with_fixtures.rb
|
187
|
+
- spec/app_root/app/models/user.rb
|
126
188
|
- spec/app_root/config/boot.rb
|
189
|
+
- spec/app_root/config/database.yml
|
127
190
|
- spec/app_root/config/environment.rb
|
128
|
-
- spec/app_root/config/routes.rb
|
129
191
|
- spec/app_root/config/environments/in_memory.rb
|
130
|
-
- spec/app_root/config/environments/
|
192
|
+
- spec/app_root/config/environments/mysql.rb
|
131
193
|
- spec/app_root/config/environments/postgresql.rb
|
194
|
+
- spec/app_root/config/environments/sqlite.rb
|
132
195
|
- spec/app_root/config/environments/sqlite3.rb
|
133
|
-
- spec/app_root/config/
|
196
|
+
- spec/app_root/config/routes.rb
|
197
|
+
- spec/app_root/db/migrate/001_create_movies.rb
|
198
|
+
- spec/app_root/db/migrate/002_create_users.rb
|
199
|
+
- spec/app_root/db/migrate/003_create_payments.rb
|
200
|
+
- spec/app_root/db/migrate/004_create_actors.rb
|
201
|
+
- spec/app_root/lib/console_with_fixtures.rb
|
202
|
+
- spec/app_root/log/.gitignore
|
203
|
+
- spec/app_root/script/console
|
204
|
+
- spec/factory_spec.rb
|
205
|
+
- spec/runtime_ext_spec.rb
|
206
|
+
- spec/spec_helper.rb
|
207
|
+
- spec/steps_spec.rb
|
208
|
+
- spec/support/rcov.opts
|
209
|
+
- spec/support/spec.opts
|
data/Gemfile.lock
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
actionmailer (2.3.8)
|
5
|
-
actionpack (= 2.3.8)
|
6
|
-
actionpack (2.3.8)
|
7
|
-
activesupport (= 2.3.8)
|
8
|
-
rack (~> 1.1.0)
|
9
|
-
activerecord (2.3.8)
|
10
|
-
activesupport (= 2.3.8)
|
11
|
-
activeresource (2.3.8)
|
12
|
-
activesupport (= 2.3.8)
|
13
|
-
activesupport (2.3.8)
|
14
|
-
builder (2.1.2)
|
15
|
-
cucumber (0.9.3)
|
16
|
-
builder (~> 2.1.2)
|
17
|
-
diff-lcs (~> 1.1.2)
|
18
|
-
gherkin (~> 2.2.9)
|
19
|
-
json (~> 1.4.6)
|
20
|
-
term-ansicolor (~> 1.0.5)
|
21
|
-
diff-lcs (1.1.2)
|
22
|
-
gemcutter (0.6.1)
|
23
|
-
gherkin (2.2.9)
|
24
|
-
json (~> 1.4.6)
|
25
|
-
term-ansicolor (~> 1.0.5)
|
26
|
-
git (1.2.5)
|
27
|
-
jeweler (1.4.0)
|
28
|
-
gemcutter (>= 0.1.0)
|
29
|
-
git (>= 1.2.5)
|
30
|
-
rubyforge (>= 2.0.0)
|
31
|
-
json (1.4.6)
|
32
|
-
json_pure (1.4.6)
|
33
|
-
rack (1.1.0)
|
34
|
-
rails (2.3.8)
|
35
|
-
actionmailer (= 2.3.8)
|
36
|
-
actionpack (= 2.3.8)
|
37
|
-
activerecord (= 2.3.8)
|
38
|
-
activeresource (= 2.3.8)
|
39
|
-
activesupport (= 2.3.8)
|
40
|
-
rake (>= 0.8.3)
|
41
|
-
rake (0.8.7)
|
42
|
-
rspec (1.3.2)
|
43
|
-
rspec-rails (1.3.2)
|
44
|
-
rack (>= 1.0.0)
|
45
|
-
rspec (>= 1.3.0)
|
46
|
-
rubyforge (2.0.4)
|
47
|
-
json_pure (>= 1.1.7)
|
48
|
-
term-ansicolor (1.0.5)
|
49
|
-
|
50
|
-
PLATFORMS
|
51
|
-
ruby
|
52
|
-
|
53
|
-
DEPENDENCIES
|
54
|
-
cucumber (= 0.9.3)
|
55
|
-
jeweler
|
56
|
-
rails (= 2.3.8)
|
57
|
-
rspec (= 1.3.2)
|
58
|
-
rspec-rails (= 1.3.2)
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
1.8.0
|