steak 1.1.0 → 2.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/{MIT-LICENSE → LICENSE} +1 -1
- data/README.md +110 -0
- data/lib/generators/steak/install_generator.rb +12 -0
- data/lib/generators/steak/spec_generator.rb +11 -0
- data/lib/generators/steak/templates/acceptance_spec.rb +13 -0
- data/lib/generators/steak/templates/spec/acceptance/acceptance_helper.rb +4 -0
- data/lib/generators/steak/templates/spec/acceptance/support/helpers.rb +6 -0
- data/lib/{rspec-2/rails/generators/templates → generators/steak/templates/spec/acceptance/support}/paths.rb +1 -1
- data/lib/steak.rb +4 -10
- data/lib/steak/acceptance_example_group.rb +12 -0
- data/lib/steak/railtie.rb +7 -0
- data/lib/steak/version.rb +3 -0
- data/lib/tasks/steak_tasks.rake +14 -0
- data/spec/acceptance/creating_specs_spec.rb +75 -0
- data/spec/acceptance/getting_started_spec.rb +33 -0
- data/spec/acceptance/rake_support_spec.rb +40 -0
- data/spec/fixtures/rails_project/.gitignore +5 -0
- data/spec/fixtures/rails_project/Gemfile +55 -0
- data/spec/fixtures/rails_project/README +261 -0
- data/spec/fixtures/rails_project/Rakefile +7 -0
- data/spec/fixtures/rails_project/app/assets/images/rails.png +0 -0
- data/spec/fixtures/rails_project/app/assets/javascripts/application.js +9 -0
- data/spec/fixtures/rails_project/app/assets/stylesheets/application.css +7 -0
- data/spec/fixtures/rails_project/app/controllers/application_controller.rb +3 -0
- data/spec/fixtures/rails_project/app/helpers/application_helper.rb +2 -0
- data/spec/fixtures/rails_project/app/mailers/.gitkeep +0 -0
- data/spec/fixtures/rails_project/app/models/.gitkeep +0 -0
- data/spec/fixtures/rails_project/app/views/layouts/application.html.erb +14 -0
- data/spec/fixtures/rails_project/config.ru +4 -0
- data/spec/fixtures/rails_project/config/application.rb +49 -0
- data/spec/fixtures/rails_project/config/boot.rb +6 -0
- data/spec/fixtures/rails_project/config/database.yml +48 -0
- data/spec/fixtures/rails_project/config/environment.rb +5 -0
- data/spec/fixtures/rails_project/config/environments/development.rb +24 -0
- data/spec/fixtures/rails_project/config/environments/production.rb +52 -0
- data/spec/fixtures/rails_project/config/environments/test.rb +39 -0
- data/spec/fixtures/rails_project/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/fixtures/rails_project/config/initializers/inflections.rb +10 -0
- data/spec/fixtures/rails_project/config/initializers/mime_types.rb +5 -0
- data/spec/fixtures/rails_project/config/initializers/secret_token.rb +7 -0
- data/spec/fixtures/rails_project/config/initializers/session_store.rb +8 -0
- data/spec/fixtures/rails_project/config/initializers/wrap_parameters.rb +12 -0
- data/spec/fixtures/rails_project/config/locales/en.yml +5 -0
- data/spec/fixtures/rails_project/config/routes.rb +58 -0
- data/spec/fixtures/rails_project/db/seeds.rb +7 -0
- data/spec/fixtures/rails_project/doc/README_FOR_APP +2 -0
- data/spec/fixtures/rails_project/lib/tasks/.gitkeep +0 -0
- data/spec/fixtures/rails_project/log/.gitkeep +0 -0
- data/spec/fixtures/rails_project/public/404.html +26 -0
- data/spec/fixtures/rails_project/public/422.html +26 -0
- data/spec/fixtures/rails_project/public/500.html +26 -0
- data/spec/fixtures/rails_project/public/favicon.ico +0 -0
- data/spec/fixtures/rails_project/public/index.html +241 -0
- data/spec/fixtures/rails_project/public/robots.txt +5 -0
- data/spec/fixtures/rails_project/script/rails +6 -0
- data/spec/fixtures/rails_project/test/fixtures/.gitkeep +0 -0
- data/spec/fixtures/rails_project/test/functional/.gitkeep +0 -0
- data/spec/fixtures/rails_project/test/integration/.gitkeep +0 -0
- data/spec/fixtures/rails_project/test/performance/browsing_test.rb +12 -0
- data/spec/fixtures/rails_project/test/test_helper.rb +13 -0
- data/spec/fixtures/rails_project/test/unit/.gitkeep +0 -0
- data/spec/fixtures/rails_project/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/fixtures/rails_project/vendor/plugins/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/.gitignore +5 -0
- data/spec/fixtures/rails_project_with_steak/.rspec +1 -0
- data/spec/fixtures/rails_project_with_steak/Gemfile +58 -0
- data/spec/fixtures/rails_project_with_steak/README +261 -0
- data/spec/fixtures/rails_project_with_steak/Rakefile +7 -0
- data/spec/fixtures/rails_project_with_steak/app/assets/images/rails.png +0 -0
- data/spec/fixtures/rails_project_with_steak/app/assets/javascripts/application.js +9 -0
- data/spec/fixtures/rails_project_with_steak/app/assets/stylesheets/application.css +7 -0
- data/spec/fixtures/rails_project_with_steak/app/controllers/application_controller.rb +3 -0
- data/spec/fixtures/rails_project_with_steak/app/helpers/application_helper.rb +2 -0
- data/spec/fixtures/rails_project_with_steak/app/mailers/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/app/models/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/app/views/layouts/application.html.erb +14 -0
- data/spec/fixtures/rails_project_with_steak/config.ru +4 -0
- data/spec/fixtures/rails_project_with_steak/config/application.rb +49 -0
- data/spec/fixtures/rails_project_with_steak/config/boot.rb +6 -0
- data/spec/fixtures/rails_project_with_steak/config/database.yml +48 -0
- data/spec/fixtures/rails_project_with_steak/config/environment.rb +5 -0
- data/spec/fixtures/rails_project_with_steak/config/environments/development.rb +24 -0
- data/spec/fixtures/rails_project_with_steak/config/environments/production.rb +52 -0
- data/spec/fixtures/rails_project_with_steak/config/environments/test.rb +39 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/inflections.rb +10 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/mime_types.rb +5 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/secret_token.rb +7 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/session_store.rb +8 -0
- data/spec/fixtures/rails_project_with_steak/config/initializers/wrap_parameters.rb +12 -0
- data/spec/fixtures/rails_project_with_steak/config/locales/en.yml +5 -0
- data/spec/fixtures/rails_project_with_steak/config/routes.rb +58 -0
- data/spec/fixtures/rails_project_with_steak/db/schema.rb +15 -0
- data/spec/fixtures/rails_project_with_steak/db/seeds.rb +7 -0
- data/spec/fixtures/rails_project_with_steak/doc/README_FOR_APP +2 -0
- data/spec/fixtures/rails_project_with_steak/lib/tasks/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/log/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/public/404.html +26 -0
- data/spec/fixtures/rails_project_with_steak/public/422.html +26 -0
- data/spec/fixtures/rails_project_with_steak/public/500.html +26 -0
- data/spec/fixtures/rails_project_with_steak/public/favicon.ico +0 -0
- data/spec/fixtures/rails_project_with_steak/public/index.html +241 -0
- data/spec/fixtures/rails_project_with_steak/public/robots.txt +5 -0
- data/spec/fixtures/rails_project_with_steak/script/rails +6 -0
- data/spec/fixtures/rails_project_with_steak/spec/acceptance/acceptance_helper.rb +4 -0
- data/spec/fixtures/rails_project_with_steak/spec/acceptance/support/.gitignore +0 -0
- data/spec/fixtures/rails_project_with_steak/spec/acceptance/support/helpers.rb +6 -0
- data/{generators/steak/templates → spec/fixtures/rails_project_with_steak/spec/acceptance/support}/paths.rb +1 -1
- data/spec/fixtures/rails_project_with_steak/spec/spec_helper.rb +27 -0
- data/spec/fixtures/rails_project_with_steak/test/fixtures/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/test/functional/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/test/integration/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/test/performance/browsing_test.rb +12 -0
- data/spec/fixtures/rails_project_with_steak/test/test_helper.rb +13 -0
- data/spec/fixtures/rails_project_with_steak/test/unit/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/fixtures/rails_project_with_steak/vendor/plugins/.gitkeep +0 -0
- data/spec/support/helpers.rb +73 -0
- data/spec/support/refresh_fixtures_task.rb +30 -0
- metadata +255 -117
- data/README.rdoc +0 -193
- data/Rakefile +0 -23
- data/generators/acceptance_spec/USAGE +0 -1
- data/generators/acceptance_spec/acceptance_spec_generator.rb +0 -9
- data/generators/acceptance_spec/templates/acceptance_spec.rb +0 -12
- data/generators/steak/USAGE +0 -8
- data/generators/steak/steak_generator.rb +0 -26
- data/generators/steak/templates/acceptance_helper.rb +0 -18
- data/generators/steak/templates/helpers.rb +0 -5
- data/generators/steak/templates/steak.rake +0 -44
- data/lib/rspec-1/steak.rb +0 -17
- data/lib/rspec-2/rails/generators/install_generator.rb +0 -31
- data/lib/rspec-2/rails/generators/spec_generator.rb +0 -36
- data/lib/rspec-2/rails/generators/templates/acceptance_helper.rb +0 -5
- data/lib/rspec-2/rails/generators/templates/acceptance_spec.rb +0 -12
- data/lib/rspec-2/rails/generators/templates/helpers.rb +0 -5
- data/lib/rspec-2/rails/railtie.rb +0 -14
- data/lib/rspec-2/rails/tasks/steak.rake +0 -14
- data/lib/rspec-2/steak.rb +0 -31
- data/spec/acceptance/rspec-1/acceptance_helper.rb +0 -98
- data/spec/acceptance/rspec-1/acceptance_spec_generator_spec.rb +0 -44
- data/spec/acceptance/rspec-1/basic_spec.rb +0 -76
- data/spec/acceptance/rspec-1/rails_spec.rb +0 -39
- data/spec/acceptance/rspec-1/steak_generator_spec.rb +0 -96
- data/spec/acceptance/rspec-2/acceptance_helper.rb +0 -81
- data/spec/acceptance/rspec-2/basic_spec.rb +0 -121
- data/spec/acceptance/rspec-2/rails_spec.rb +0 -88
- data/spec/acceptance/rspec-2/steak_install_generator_spec.rb +0 -62
- data/spec/acceptance/rspec-2/steak_spec_generator_spec.rb +0 -77
@@ -0,0 +1,30 @@
|
|
1
|
+
desc 'Regenerates the fixture projects in spec/fixtures'
|
2
|
+
task :refresh_fixtures do
|
3
|
+
Bundler.setup
|
4
|
+
require 'rails'
|
5
|
+
require File.dirname(__FILE__) + '/helpers'
|
6
|
+
include Helpers
|
7
|
+
|
8
|
+
rm_rf fixture_path(:rails_project)
|
9
|
+
rm_rf fixture_path(:rails_project_with_steak)
|
10
|
+
rm_rf rails_project_path
|
11
|
+
|
12
|
+
cd root_path
|
13
|
+
run "rails new #{rails_project_path} -m http://jruby.org/rails3.rb" # use the jruby template to make sure the project is ready to run with jruby
|
14
|
+
cp_r rails_project_path, fixture_path(:rails_project)
|
15
|
+
cd rails_project_path
|
16
|
+
|
17
|
+
append_to 'Gemfile', <<-RUBY
|
18
|
+
group :test, :development do
|
19
|
+
gem 'steak', :path => '#{root_path}'
|
20
|
+
end
|
21
|
+
RUBY
|
22
|
+
|
23
|
+
run 'bundle --local'
|
24
|
+
run 'rails g steak:install'
|
25
|
+
run 'rake db:migrate'
|
26
|
+
|
27
|
+
cp_r rails_project_path, fixture_path(:rails_project_with_steak)
|
28
|
+
|
29
|
+
cd root_path
|
30
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: steak
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 62196449
|
5
|
+
prerelease: 6
|
6
6
|
segments:
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- 2
|
8
|
+
- 0
|
9
9
|
- 0
|
10
|
-
|
10
|
+
- beta
|
11
|
+
- 1
|
12
|
+
version: 2.0.0.beta1
|
11
13
|
platform: ruby
|
12
14
|
authors:
|
13
15
|
- "Luismi Cavall\xC3\xA9"
|
@@ -15,99 +17,43 @@ autorequire:
|
|
15
17
|
bindir: bin
|
16
18
|
cert_chain: []
|
17
19
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
20
|
+
date: 2011-06-05 00:00:00 Z
|
20
21
|
dependencies:
|
21
22
|
- !ruby/object:Gem::Dependency
|
22
|
-
name: rspec
|
23
|
+
name: rspec-rails
|
23
24
|
prerelease: false
|
24
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
26
|
none: false
|
26
27
|
requirements:
|
27
28
|
- - ">="
|
28
29
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
30
|
+
hash: 27
|
30
31
|
segments:
|
31
|
-
-
|
32
|
-
-
|
33
|
-
|
32
|
+
- 2
|
33
|
+
- 5
|
34
|
+
- 0
|
35
|
+
version: 2.5.0
|
34
36
|
type: :runtime
|
35
37
|
version_requirements: *id001
|
36
38
|
- !ruby/object:Gem::Dependency
|
37
|
-
name:
|
39
|
+
name: capybara
|
38
40
|
prerelease: false
|
39
41
|
requirement: &id002 !ruby/object:Gem::Requirement
|
40
42
|
none: false
|
41
43
|
requirements:
|
42
44
|
- - ">="
|
43
45
|
- !ruby/object:Gem::Version
|
44
|
-
hash:
|
46
|
+
hash: 62196353
|
45
47
|
segments:
|
46
|
-
-
|
48
|
+
- 1
|
47
49
|
- 0
|
48
50
|
- 0
|
49
|
-
|
50
|
-
|
51
|
+
- beta
|
52
|
+
- 1
|
53
|
+
version: 1.0.0.beta1
|
54
|
+
type: :runtime
|
51
55
|
version_requirements: *id002
|
52
|
-
-
|
53
|
-
name: rails
|
54
|
-
prerelease: false
|
55
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
-
none: false
|
57
|
-
requirements:
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
hash: 7
|
61
|
-
segments:
|
62
|
-
- 3
|
63
|
-
- 0
|
64
|
-
- 0
|
65
|
-
version: 3.0.0
|
66
|
-
type: :development
|
67
|
-
version_requirements: *id003
|
68
|
-
- !ruby/object:Gem::Dependency
|
69
|
-
name: capybara
|
70
|
-
prerelease: false
|
71
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
72
|
-
none: false
|
73
|
-
requirements:
|
74
|
-
- - ">="
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
hash: 3
|
77
|
-
segments:
|
78
|
-
- 0
|
79
|
-
version: "0"
|
80
|
-
type: :development
|
81
|
-
version_requirements: *id004
|
82
|
-
- !ruby/object:Gem::Dependency
|
83
|
-
name: webrat
|
84
|
-
prerelease: false
|
85
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
86
|
-
none: false
|
87
|
-
requirements:
|
88
|
-
- - ">="
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
hash: 3
|
91
|
-
segments:
|
92
|
-
- 0
|
93
|
-
version: "0"
|
94
|
-
type: :development
|
95
|
-
version_requirements: *id005
|
96
|
-
- !ruby/object:Gem::Dependency
|
97
|
-
name: sqlite3-ruby
|
98
|
-
prerelease: false
|
99
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
100
|
-
none: false
|
101
|
-
requirements:
|
102
|
-
- - ">="
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
hash: 3
|
105
|
-
segments:
|
106
|
-
- 0
|
107
|
-
version: "0"
|
108
|
-
type: :development
|
109
|
-
version_requirements: *id006
|
110
|
-
description: If you are not in Rails but use RSpec, then Steak is just some aliases providing you with the language of acceptance testing (feature, scenario, background). If you are in Rails, you also have a couple of generators, a rake task and full Rails integration testing (meaning Webrat support, for instance)
|
56
|
+
description: Steak is a minimal extension of RSpec-Rails that adds several conveniences to do acceptance testing of Rails applications using Capybara. It's an alternative to Cucumber in plain Ruby.
|
111
57
|
email: luismi@lmcavalle.com
|
112
58
|
executables: []
|
113
59
|
|
@@ -116,40 +62,125 @@ extensions: []
|
|
116
62
|
extra_rdoc_files: []
|
117
63
|
|
118
64
|
files:
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
- lib/
|
123
|
-
- lib/
|
124
|
-
- lib/
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
130
|
-
- lib/rspec-2/rails/tasks/steak.rake
|
131
|
-
- lib/rspec-2/steak.rb
|
65
|
+
- LICENSE
|
66
|
+
- README.md
|
67
|
+
- lib/generators/steak/install_generator.rb
|
68
|
+
- lib/generators/steak/spec_generator.rb
|
69
|
+
- lib/generators/steak/templates/acceptance_spec.rb
|
70
|
+
- lib/generators/steak/templates/spec/acceptance/acceptance_helper.rb
|
71
|
+
- lib/generators/steak/templates/spec/acceptance/support/helpers.rb
|
72
|
+
- lib/generators/steak/templates/spec/acceptance/support/paths.rb
|
73
|
+
- lib/steak/acceptance_example_group.rb
|
74
|
+
- lib/steak/railtie.rb
|
75
|
+
- lib/steak/version.rb
|
132
76
|
- lib/steak.rb
|
133
|
-
-
|
134
|
-
- spec/acceptance/
|
135
|
-
- spec/acceptance/
|
136
|
-
- spec/acceptance/
|
137
|
-
- spec/
|
138
|
-
- spec/
|
139
|
-
- spec/
|
140
|
-
- spec/
|
141
|
-
- spec/
|
142
|
-
- spec/
|
143
|
-
-
|
144
|
-
-
|
145
|
-
-
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
-
|
152
|
-
|
77
|
+
- lib/tasks/steak_tasks.rake
|
78
|
+
- spec/acceptance/creating_specs_spec.rb
|
79
|
+
- spec/acceptance/getting_started_spec.rb
|
80
|
+
- spec/acceptance/rake_support_spec.rb
|
81
|
+
- spec/fixtures/rails_project/.gitignore
|
82
|
+
- spec/fixtures/rails_project/Gemfile
|
83
|
+
- spec/fixtures/rails_project/README
|
84
|
+
- spec/fixtures/rails_project/Rakefile
|
85
|
+
- spec/fixtures/rails_project/app/assets/images/rails.png
|
86
|
+
- spec/fixtures/rails_project/app/assets/javascripts/application.js
|
87
|
+
- spec/fixtures/rails_project/app/assets/stylesheets/application.css
|
88
|
+
- spec/fixtures/rails_project/app/controllers/application_controller.rb
|
89
|
+
- spec/fixtures/rails_project/app/helpers/application_helper.rb
|
90
|
+
- spec/fixtures/rails_project/app/mailers/.gitkeep
|
91
|
+
- spec/fixtures/rails_project/app/models/.gitkeep
|
92
|
+
- spec/fixtures/rails_project/app/views/layouts/application.html.erb
|
93
|
+
- spec/fixtures/rails_project/config.ru
|
94
|
+
- spec/fixtures/rails_project/config/application.rb
|
95
|
+
- spec/fixtures/rails_project/config/boot.rb
|
96
|
+
- spec/fixtures/rails_project/config/database.yml
|
97
|
+
- spec/fixtures/rails_project/config/environment.rb
|
98
|
+
- spec/fixtures/rails_project/config/environments/development.rb
|
99
|
+
- spec/fixtures/rails_project/config/environments/production.rb
|
100
|
+
- spec/fixtures/rails_project/config/environments/test.rb
|
101
|
+
- spec/fixtures/rails_project/config/initializers/backtrace_silencers.rb
|
102
|
+
- spec/fixtures/rails_project/config/initializers/inflections.rb
|
103
|
+
- spec/fixtures/rails_project/config/initializers/mime_types.rb
|
104
|
+
- spec/fixtures/rails_project/config/initializers/secret_token.rb
|
105
|
+
- spec/fixtures/rails_project/config/initializers/session_store.rb
|
106
|
+
- spec/fixtures/rails_project/config/initializers/wrap_parameters.rb
|
107
|
+
- spec/fixtures/rails_project/config/locales/en.yml
|
108
|
+
- spec/fixtures/rails_project/config/routes.rb
|
109
|
+
- spec/fixtures/rails_project/db/seeds.rb
|
110
|
+
- spec/fixtures/rails_project/doc/README_FOR_APP
|
111
|
+
- spec/fixtures/rails_project/lib/tasks/.gitkeep
|
112
|
+
- spec/fixtures/rails_project/log/.gitkeep
|
113
|
+
- spec/fixtures/rails_project/public/404.html
|
114
|
+
- spec/fixtures/rails_project/public/422.html
|
115
|
+
- spec/fixtures/rails_project/public/500.html
|
116
|
+
- spec/fixtures/rails_project/public/favicon.ico
|
117
|
+
- spec/fixtures/rails_project/public/index.html
|
118
|
+
- spec/fixtures/rails_project/public/robots.txt
|
119
|
+
- spec/fixtures/rails_project/script/rails
|
120
|
+
- spec/fixtures/rails_project/test/fixtures/.gitkeep
|
121
|
+
- spec/fixtures/rails_project/test/functional/.gitkeep
|
122
|
+
- spec/fixtures/rails_project/test/integration/.gitkeep
|
123
|
+
- spec/fixtures/rails_project/test/performance/browsing_test.rb
|
124
|
+
- spec/fixtures/rails_project/test/test_helper.rb
|
125
|
+
- spec/fixtures/rails_project/test/unit/.gitkeep
|
126
|
+
- spec/fixtures/rails_project/vendor/assets/stylesheets/.gitkeep
|
127
|
+
- spec/fixtures/rails_project/vendor/plugins/.gitkeep
|
128
|
+
- spec/fixtures/rails_project_with_steak/.gitignore
|
129
|
+
- spec/fixtures/rails_project_with_steak/.rspec
|
130
|
+
- spec/fixtures/rails_project_with_steak/Gemfile
|
131
|
+
- spec/fixtures/rails_project_with_steak/README
|
132
|
+
- spec/fixtures/rails_project_with_steak/Rakefile
|
133
|
+
- spec/fixtures/rails_project_with_steak/app/assets/images/rails.png
|
134
|
+
- spec/fixtures/rails_project_with_steak/app/assets/javascripts/application.js
|
135
|
+
- spec/fixtures/rails_project_with_steak/app/assets/stylesheets/application.css
|
136
|
+
- spec/fixtures/rails_project_with_steak/app/controllers/application_controller.rb
|
137
|
+
- spec/fixtures/rails_project_with_steak/app/helpers/application_helper.rb
|
138
|
+
- spec/fixtures/rails_project_with_steak/app/mailers/.gitkeep
|
139
|
+
- spec/fixtures/rails_project_with_steak/app/models/.gitkeep
|
140
|
+
- spec/fixtures/rails_project_with_steak/app/views/layouts/application.html.erb
|
141
|
+
- spec/fixtures/rails_project_with_steak/config.ru
|
142
|
+
- spec/fixtures/rails_project_with_steak/config/application.rb
|
143
|
+
- spec/fixtures/rails_project_with_steak/config/boot.rb
|
144
|
+
- spec/fixtures/rails_project_with_steak/config/database.yml
|
145
|
+
- spec/fixtures/rails_project_with_steak/config/environment.rb
|
146
|
+
- spec/fixtures/rails_project_with_steak/config/environments/development.rb
|
147
|
+
- spec/fixtures/rails_project_with_steak/config/environments/production.rb
|
148
|
+
- spec/fixtures/rails_project_with_steak/config/environments/test.rb
|
149
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/backtrace_silencers.rb
|
150
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/inflections.rb
|
151
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/mime_types.rb
|
152
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/secret_token.rb
|
153
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/session_store.rb
|
154
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/wrap_parameters.rb
|
155
|
+
- spec/fixtures/rails_project_with_steak/config/locales/en.yml
|
156
|
+
- spec/fixtures/rails_project_with_steak/config/routes.rb
|
157
|
+
- spec/fixtures/rails_project_with_steak/db/schema.rb
|
158
|
+
- spec/fixtures/rails_project_with_steak/db/seeds.rb
|
159
|
+
- spec/fixtures/rails_project_with_steak/doc/README_FOR_APP
|
160
|
+
- spec/fixtures/rails_project_with_steak/lib/tasks/.gitkeep
|
161
|
+
- spec/fixtures/rails_project_with_steak/log/.gitkeep
|
162
|
+
- spec/fixtures/rails_project_with_steak/public/404.html
|
163
|
+
- spec/fixtures/rails_project_with_steak/public/422.html
|
164
|
+
- spec/fixtures/rails_project_with_steak/public/500.html
|
165
|
+
- spec/fixtures/rails_project_with_steak/public/favicon.ico
|
166
|
+
- spec/fixtures/rails_project_with_steak/public/index.html
|
167
|
+
- spec/fixtures/rails_project_with_steak/public/robots.txt
|
168
|
+
- spec/fixtures/rails_project_with_steak/script/rails
|
169
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/acceptance_helper.rb
|
170
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/.gitignore
|
171
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/helpers.rb
|
172
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/paths.rb
|
173
|
+
- spec/fixtures/rails_project_with_steak/spec/spec_helper.rb
|
174
|
+
- spec/fixtures/rails_project_with_steak/test/fixtures/.gitkeep
|
175
|
+
- spec/fixtures/rails_project_with_steak/test/functional/.gitkeep
|
176
|
+
- spec/fixtures/rails_project_with_steak/test/integration/.gitkeep
|
177
|
+
- spec/fixtures/rails_project_with_steak/test/performance/browsing_test.rb
|
178
|
+
- spec/fixtures/rails_project_with_steak/test/test_helper.rb
|
179
|
+
- spec/fixtures/rails_project_with_steak/test/unit/.gitkeep
|
180
|
+
- spec/fixtures/rails_project_with_steak/vendor/assets/stylesheets/.gitkeep
|
181
|
+
- spec/fixtures/rails_project_with_steak/vendor/plugins/.gitkeep
|
182
|
+
- spec/support/helpers.rb
|
183
|
+
- spec/support/refresh_fixtures_task.rb
|
153
184
|
homepage: http://github.com/cavalle/steak
|
154
185
|
licenses: []
|
155
186
|
|
@@ -170,18 +201,125 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
170
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
202
|
none: false
|
172
203
|
requirements:
|
173
|
-
- - "
|
204
|
+
- - ">"
|
174
205
|
- !ruby/object:Gem::Version
|
175
|
-
hash:
|
206
|
+
hash: 25
|
176
207
|
segments:
|
177
|
-
-
|
178
|
-
|
208
|
+
- 1
|
209
|
+
- 3
|
210
|
+
- 1
|
211
|
+
version: 1.3.1
|
179
212
|
requirements: []
|
180
213
|
|
181
214
|
rubyforge_project:
|
182
|
-
rubygems_version: 1.
|
215
|
+
rubygems_version: 1.8.5
|
183
216
|
signing_key:
|
184
217
|
specification_version: 3
|
185
|
-
summary:
|
186
|
-
test_files:
|
187
|
-
|
218
|
+
summary: The delicious combination of RSpec and Capybara for Acceptance BDD
|
219
|
+
test_files:
|
220
|
+
- spec/acceptance/creating_specs_spec.rb
|
221
|
+
- spec/acceptance/getting_started_spec.rb
|
222
|
+
- spec/acceptance/rake_support_spec.rb
|
223
|
+
- spec/fixtures/rails_project/.gitignore
|
224
|
+
- spec/fixtures/rails_project/Gemfile
|
225
|
+
- spec/fixtures/rails_project/README
|
226
|
+
- spec/fixtures/rails_project/Rakefile
|
227
|
+
- spec/fixtures/rails_project/app/assets/images/rails.png
|
228
|
+
- spec/fixtures/rails_project/app/assets/javascripts/application.js
|
229
|
+
- spec/fixtures/rails_project/app/assets/stylesheets/application.css
|
230
|
+
- spec/fixtures/rails_project/app/controllers/application_controller.rb
|
231
|
+
- spec/fixtures/rails_project/app/helpers/application_helper.rb
|
232
|
+
- spec/fixtures/rails_project/app/mailers/.gitkeep
|
233
|
+
- spec/fixtures/rails_project/app/models/.gitkeep
|
234
|
+
- spec/fixtures/rails_project/app/views/layouts/application.html.erb
|
235
|
+
- spec/fixtures/rails_project/config.ru
|
236
|
+
- spec/fixtures/rails_project/config/application.rb
|
237
|
+
- spec/fixtures/rails_project/config/boot.rb
|
238
|
+
- spec/fixtures/rails_project/config/database.yml
|
239
|
+
- spec/fixtures/rails_project/config/environment.rb
|
240
|
+
- spec/fixtures/rails_project/config/environments/development.rb
|
241
|
+
- spec/fixtures/rails_project/config/environments/production.rb
|
242
|
+
- spec/fixtures/rails_project/config/environments/test.rb
|
243
|
+
- spec/fixtures/rails_project/config/initializers/backtrace_silencers.rb
|
244
|
+
- spec/fixtures/rails_project/config/initializers/inflections.rb
|
245
|
+
- spec/fixtures/rails_project/config/initializers/mime_types.rb
|
246
|
+
- spec/fixtures/rails_project/config/initializers/secret_token.rb
|
247
|
+
- spec/fixtures/rails_project/config/initializers/session_store.rb
|
248
|
+
- spec/fixtures/rails_project/config/initializers/wrap_parameters.rb
|
249
|
+
- spec/fixtures/rails_project/config/locales/en.yml
|
250
|
+
- spec/fixtures/rails_project/config/routes.rb
|
251
|
+
- spec/fixtures/rails_project/db/seeds.rb
|
252
|
+
- spec/fixtures/rails_project/doc/README_FOR_APP
|
253
|
+
- spec/fixtures/rails_project/lib/tasks/.gitkeep
|
254
|
+
- spec/fixtures/rails_project/log/.gitkeep
|
255
|
+
- spec/fixtures/rails_project/public/404.html
|
256
|
+
- spec/fixtures/rails_project/public/422.html
|
257
|
+
- spec/fixtures/rails_project/public/500.html
|
258
|
+
- spec/fixtures/rails_project/public/favicon.ico
|
259
|
+
- spec/fixtures/rails_project/public/index.html
|
260
|
+
- spec/fixtures/rails_project/public/robots.txt
|
261
|
+
- spec/fixtures/rails_project/script/rails
|
262
|
+
- spec/fixtures/rails_project/test/fixtures/.gitkeep
|
263
|
+
- spec/fixtures/rails_project/test/functional/.gitkeep
|
264
|
+
- spec/fixtures/rails_project/test/integration/.gitkeep
|
265
|
+
- spec/fixtures/rails_project/test/performance/browsing_test.rb
|
266
|
+
- spec/fixtures/rails_project/test/test_helper.rb
|
267
|
+
- spec/fixtures/rails_project/test/unit/.gitkeep
|
268
|
+
- spec/fixtures/rails_project/vendor/assets/stylesheets/.gitkeep
|
269
|
+
- spec/fixtures/rails_project/vendor/plugins/.gitkeep
|
270
|
+
- spec/fixtures/rails_project_with_steak/.gitignore
|
271
|
+
- spec/fixtures/rails_project_with_steak/.rspec
|
272
|
+
- spec/fixtures/rails_project_with_steak/Gemfile
|
273
|
+
- spec/fixtures/rails_project_with_steak/README
|
274
|
+
- spec/fixtures/rails_project_with_steak/Rakefile
|
275
|
+
- spec/fixtures/rails_project_with_steak/app/assets/images/rails.png
|
276
|
+
- spec/fixtures/rails_project_with_steak/app/assets/javascripts/application.js
|
277
|
+
- spec/fixtures/rails_project_with_steak/app/assets/stylesheets/application.css
|
278
|
+
- spec/fixtures/rails_project_with_steak/app/controllers/application_controller.rb
|
279
|
+
- spec/fixtures/rails_project_with_steak/app/helpers/application_helper.rb
|
280
|
+
- spec/fixtures/rails_project_with_steak/app/mailers/.gitkeep
|
281
|
+
- spec/fixtures/rails_project_with_steak/app/models/.gitkeep
|
282
|
+
- spec/fixtures/rails_project_with_steak/app/views/layouts/application.html.erb
|
283
|
+
- spec/fixtures/rails_project_with_steak/config.ru
|
284
|
+
- spec/fixtures/rails_project_with_steak/config/application.rb
|
285
|
+
- spec/fixtures/rails_project_with_steak/config/boot.rb
|
286
|
+
- spec/fixtures/rails_project_with_steak/config/database.yml
|
287
|
+
- spec/fixtures/rails_project_with_steak/config/environment.rb
|
288
|
+
- spec/fixtures/rails_project_with_steak/config/environments/development.rb
|
289
|
+
- spec/fixtures/rails_project_with_steak/config/environments/production.rb
|
290
|
+
- spec/fixtures/rails_project_with_steak/config/environments/test.rb
|
291
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/backtrace_silencers.rb
|
292
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/inflections.rb
|
293
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/mime_types.rb
|
294
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/secret_token.rb
|
295
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/session_store.rb
|
296
|
+
- spec/fixtures/rails_project_with_steak/config/initializers/wrap_parameters.rb
|
297
|
+
- spec/fixtures/rails_project_with_steak/config/locales/en.yml
|
298
|
+
- spec/fixtures/rails_project_with_steak/config/routes.rb
|
299
|
+
- spec/fixtures/rails_project_with_steak/db/schema.rb
|
300
|
+
- spec/fixtures/rails_project_with_steak/db/seeds.rb
|
301
|
+
- spec/fixtures/rails_project_with_steak/doc/README_FOR_APP
|
302
|
+
- spec/fixtures/rails_project_with_steak/lib/tasks/.gitkeep
|
303
|
+
- spec/fixtures/rails_project_with_steak/log/.gitkeep
|
304
|
+
- spec/fixtures/rails_project_with_steak/public/404.html
|
305
|
+
- spec/fixtures/rails_project_with_steak/public/422.html
|
306
|
+
- spec/fixtures/rails_project_with_steak/public/500.html
|
307
|
+
- spec/fixtures/rails_project_with_steak/public/favicon.ico
|
308
|
+
- spec/fixtures/rails_project_with_steak/public/index.html
|
309
|
+
- spec/fixtures/rails_project_with_steak/public/robots.txt
|
310
|
+
- spec/fixtures/rails_project_with_steak/script/rails
|
311
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/acceptance_helper.rb
|
312
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/.gitignore
|
313
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/helpers.rb
|
314
|
+
- spec/fixtures/rails_project_with_steak/spec/acceptance/support/paths.rb
|
315
|
+
- spec/fixtures/rails_project_with_steak/spec/spec_helper.rb
|
316
|
+
- spec/fixtures/rails_project_with_steak/test/fixtures/.gitkeep
|
317
|
+
- spec/fixtures/rails_project_with_steak/test/functional/.gitkeep
|
318
|
+
- spec/fixtures/rails_project_with_steak/test/integration/.gitkeep
|
319
|
+
- spec/fixtures/rails_project_with_steak/test/performance/browsing_test.rb
|
320
|
+
- spec/fixtures/rails_project_with_steak/test/test_helper.rb
|
321
|
+
- spec/fixtures/rails_project_with_steak/test/unit/.gitkeep
|
322
|
+
- spec/fixtures/rails_project_with_steak/vendor/assets/stylesheets/.gitkeep
|
323
|
+
- spec/fixtures/rails_project_with_steak/vendor/plugins/.gitkeep
|
324
|
+
- spec/support/helpers.rb
|
325
|
+
- spec/support/refresh_fixtures_task.rb
|