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.
Files changed (149) hide show
  1. data/{MIT-LICENSE → LICENSE} +1 -1
  2. data/README.md +110 -0
  3. data/lib/generators/steak/install_generator.rb +12 -0
  4. data/lib/generators/steak/spec_generator.rb +11 -0
  5. data/lib/generators/steak/templates/acceptance_spec.rb +13 -0
  6. data/lib/generators/steak/templates/spec/acceptance/acceptance_helper.rb +4 -0
  7. data/lib/generators/steak/templates/spec/acceptance/support/helpers.rb +6 -0
  8. data/lib/{rspec-2/rails/generators/templates → generators/steak/templates/spec/acceptance/support}/paths.rb +1 -1
  9. data/lib/steak.rb +4 -10
  10. data/lib/steak/acceptance_example_group.rb +12 -0
  11. data/lib/steak/railtie.rb +7 -0
  12. data/lib/steak/version.rb +3 -0
  13. data/lib/tasks/steak_tasks.rake +14 -0
  14. data/spec/acceptance/creating_specs_spec.rb +75 -0
  15. data/spec/acceptance/getting_started_spec.rb +33 -0
  16. data/spec/acceptance/rake_support_spec.rb +40 -0
  17. data/spec/fixtures/rails_project/.gitignore +5 -0
  18. data/spec/fixtures/rails_project/Gemfile +55 -0
  19. data/spec/fixtures/rails_project/README +261 -0
  20. data/spec/fixtures/rails_project/Rakefile +7 -0
  21. data/spec/fixtures/rails_project/app/assets/images/rails.png +0 -0
  22. data/spec/fixtures/rails_project/app/assets/javascripts/application.js +9 -0
  23. data/spec/fixtures/rails_project/app/assets/stylesheets/application.css +7 -0
  24. data/spec/fixtures/rails_project/app/controllers/application_controller.rb +3 -0
  25. data/spec/fixtures/rails_project/app/helpers/application_helper.rb +2 -0
  26. data/spec/fixtures/rails_project/app/mailers/.gitkeep +0 -0
  27. data/spec/fixtures/rails_project/app/models/.gitkeep +0 -0
  28. data/spec/fixtures/rails_project/app/views/layouts/application.html.erb +14 -0
  29. data/spec/fixtures/rails_project/config.ru +4 -0
  30. data/spec/fixtures/rails_project/config/application.rb +49 -0
  31. data/spec/fixtures/rails_project/config/boot.rb +6 -0
  32. data/spec/fixtures/rails_project/config/database.yml +48 -0
  33. data/spec/fixtures/rails_project/config/environment.rb +5 -0
  34. data/spec/fixtures/rails_project/config/environments/development.rb +24 -0
  35. data/spec/fixtures/rails_project/config/environments/production.rb +52 -0
  36. data/spec/fixtures/rails_project/config/environments/test.rb +39 -0
  37. data/spec/fixtures/rails_project/config/initializers/backtrace_silencers.rb +7 -0
  38. data/spec/fixtures/rails_project/config/initializers/inflections.rb +10 -0
  39. data/spec/fixtures/rails_project/config/initializers/mime_types.rb +5 -0
  40. data/spec/fixtures/rails_project/config/initializers/secret_token.rb +7 -0
  41. data/spec/fixtures/rails_project/config/initializers/session_store.rb +8 -0
  42. data/spec/fixtures/rails_project/config/initializers/wrap_parameters.rb +12 -0
  43. data/spec/fixtures/rails_project/config/locales/en.yml +5 -0
  44. data/spec/fixtures/rails_project/config/routes.rb +58 -0
  45. data/spec/fixtures/rails_project/db/seeds.rb +7 -0
  46. data/spec/fixtures/rails_project/doc/README_FOR_APP +2 -0
  47. data/spec/fixtures/rails_project/lib/tasks/.gitkeep +0 -0
  48. data/spec/fixtures/rails_project/log/.gitkeep +0 -0
  49. data/spec/fixtures/rails_project/public/404.html +26 -0
  50. data/spec/fixtures/rails_project/public/422.html +26 -0
  51. data/spec/fixtures/rails_project/public/500.html +26 -0
  52. data/spec/fixtures/rails_project/public/favicon.ico +0 -0
  53. data/spec/fixtures/rails_project/public/index.html +241 -0
  54. data/spec/fixtures/rails_project/public/robots.txt +5 -0
  55. data/spec/fixtures/rails_project/script/rails +6 -0
  56. data/spec/fixtures/rails_project/test/fixtures/.gitkeep +0 -0
  57. data/spec/fixtures/rails_project/test/functional/.gitkeep +0 -0
  58. data/spec/fixtures/rails_project/test/integration/.gitkeep +0 -0
  59. data/spec/fixtures/rails_project/test/performance/browsing_test.rb +12 -0
  60. data/spec/fixtures/rails_project/test/test_helper.rb +13 -0
  61. data/spec/fixtures/rails_project/test/unit/.gitkeep +0 -0
  62. data/spec/fixtures/rails_project/vendor/assets/stylesheets/.gitkeep +0 -0
  63. data/spec/fixtures/rails_project/vendor/plugins/.gitkeep +0 -0
  64. data/spec/fixtures/rails_project_with_steak/.gitignore +5 -0
  65. data/spec/fixtures/rails_project_with_steak/.rspec +1 -0
  66. data/spec/fixtures/rails_project_with_steak/Gemfile +58 -0
  67. data/spec/fixtures/rails_project_with_steak/README +261 -0
  68. data/spec/fixtures/rails_project_with_steak/Rakefile +7 -0
  69. data/spec/fixtures/rails_project_with_steak/app/assets/images/rails.png +0 -0
  70. data/spec/fixtures/rails_project_with_steak/app/assets/javascripts/application.js +9 -0
  71. data/spec/fixtures/rails_project_with_steak/app/assets/stylesheets/application.css +7 -0
  72. data/spec/fixtures/rails_project_with_steak/app/controllers/application_controller.rb +3 -0
  73. data/spec/fixtures/rails_project_with_steak/app/helpers/application_helper.rb +2 -0
  74. data/spec/fixtures/rails_project_with_steak/app/mailers/.gitkeep +0 -0
  75. data/spec/fixtures/rails_project_with_steak/app/models/.gitkeep +0 -0
  76. data/spec/fixtures/rails_project_with_steak/app/views/layouts/application.html.erb +14 -0
  77. data/spec/fixtures/rails_project_with_steak/config.ru +4 -0
  78. data/spec/fixtures/rails_project_with_steak/config/application.rb +49 -0
  79. data/spec/fixtures/rails_project_with_steak/config/boot.rb +6 -0
  80. data/spec/fixtures/rails_project_with_steak/config/database.yml +48 -0
  81. data/spec/fixtures/rails_project_with_steak/config/environment.rb +5 -0
  82. data/spec/fixtures/rails_project_with_steak/config/environments/development.rb +24 -0
  83. data/spec/fixtures/rails_project_with_steak/config/environments/production.rb +52 -0
  84. data/spec/fixtures/rails_project_with_steak/config/environments/test.rb +39 -0
  85. data/spec/fixtures/rails_project_with_steak/config/initializers/backtrace_silencers.rb +7 -0
  86. data/spec/fixtures/rails_project_with_steak/config/initializers/inflections.rb +10 -0
  87. data/spec/fixtures/rails_project_with_steak/config/initializers/mime_types.rb +5 -0
  88. data/spec/fixtures/rails_project_with_steak/config/initializers/secret_token.rb +7 -0
  89. data/spec/fixtures/rails_project_with_steak/config/initializers/session_store.rb +8 -0
  90. data/spec/fixtures/rails_project_with_steak/config/initializers/wrap_parameters.rb +12 -0
  91. data/spec/fixtures/rails_project_with_steak/config/locales/en.yml +5 -0
  92. data/spec/fixtures/rails_project_with_steak/config/routes.rb +58 -0
  93. data/spec/fixtures/rails_project_with_steak/db/schema.rb +15 -0
  94. data/spec/fixtures/rails_project_with_steak/db/seeds.rb +7 -0
  95. data/spec/fixtures/rails_project_with_steak/doc/README_FOR_APP +2 -0
  96. data/spec/fixtures/rails_project_with_steak/lib/tasks/.gitkeep +0 -0
  97. data/spec/fixtures/rails_project_with_steak/log/.gitkeep +0 -0
  98. data/spec/fixtures/rails_project_with_steak/public/404.html +26 -0
  99. data/spec/fixtures/rails_project_with_steak/public/422.html +26 -0
  100. data/spec/fixtures/rails_project_with_steak/public/500.html +26 -0
  101. data/spec/fixtures/rails_project_with_steak/public/favicon.ico +0 -0
  102. data/spec/fixtures/rails_project_with_steak/public/index.html +241 -0
  103. data/spec/fixtures/rails_project_with_steak/public/robots.txt +5 -0
  104. data/spec/fixtures/rails_project_with_steak/script/rails +6 -0
  105. data/spec/fixtures/rails_project_with_steak/spec/acceptance/acceptance_helper.rb +4 -0
  106. data/spec/fixtures/rails_project_with_steak/spec/acceptance/support/.gitignore +0 -0
  107. data/spec/fixtures/rails_project_with_steak/spec/acceptance/support/helpers.rb +6 -0
  108. data/{generators/steak/templates → spec/fixtures/rails_project_with_steak/spec/acceptance/support}/paths.rb +1 -1
  109. data/spec/fixtures/rails_project_with_steak/spec/spec_helper.rb +27 -0
  110. data/spec/fixtures/rails_project_with_steak/test/fixtures/.gitkeep +0 -0
  111. data/spec/fixtures/rails_project_with_steak/test/functional/.gitkeep +0 -0
  112. data/spec/fixtures/rails_project_with_steak/test/integration/.gitkeep +0 -0
  113. data/spec/fixtures/rails_project_with_steak/test/performance/browsing_test.rb +12 -0
  114. data/spec/fixtures/rails_project_with_steak/test/test_helper.rb +13 -0
  115. data/spec/fixtures/rails_project_with_steak/test/unit/.gitkeep +0 -0
  116. data/spec/fixtures/rails_project_with_steak/vendor/assets/stylesheets/.gitkeep +0 -0
  117. data/spec/fixtures/rails_project_with_steak/vendor/plugins/.gitkeep +0 -0
  118. data/spec/support/helpers.rb +73 -0
  119. data/spec/support/refresh_fixtures_task.rb +30 -0
  120. metadata +255 -117
  121. data/README.rdoc +0 -193
  122. data/Rakefile +0 -23
  123. data/generators/acceptance_spec/USAGE +0 -1
  124. data/generators/acceptance_spec/acceptance_spec_generator.rb +0 -9
  125. data/generators/acceptance_spec/templates/acceptance_spec.rb +0 -12
  126. data/generators/steak/USAGE +0 -8
  127. data/generators/steak/steak_generator.rb +0 -26
  128. data/generators/steak/templates/acceptance_helper.rb +0 -18
  129. data/generators/steak/templates/helpers.rb +0 -5
  130. data/generators/steak/templates/steak.rake +0 -44
  131. data/lib/rspec-1/steak.rb +0 -17
  132. data/lib/rspec-2/rails/generators/install_generator.rb +0 -31
  133. data/lib/rspec-2/rails/generators/spec_generator.rb +0 -36
  134. data/lib/rspec-2/rails/generators/templates/acceptance_helper.rb +0 -5
  135. data/lib/rspec-2/rails/generators/templates/acceptance_spec.rb +0 -12
  136. data/lib/rspec-2/rails/generators/templates/helpers.rb +0 -5
  137. data/lib/rspec-2/rails/railtie.rb +0 -14
  138. data/lib/rspec-2/rails/tasks/steak.rake +0 -14
  139. data/lib/rspec-2/steak.rb +0 -31
  140. data/spec/acceptance/rspec-1/acceptance_helper.rb +0 -98
  141. data/spec/acceptance/rspec-1/acceptance_spec_generator_spec.rb +0 -44
  142. data/spec/acceptance/rspec-1/basic_spec.rb +0 -76
  143. data/spec/acceptance/rspec-1/rails_spec.rb +0 -39
  144. data/spec/acceptance/rspec-1/steak_generator_spec.rb +0 -96
  145. data/spec/acceptance/rspec-2/acceptance_helper.rb +0 -81
  146. data/spec/acceptance/rspec-2/basic_spec.rb +0 -121
  147. data/spec/acceptance/rspec-2/rails_spec.rb +0 -88
  148. data/spec/acceptance/rspec-2/steak_install_generator_spec.rb +0 -62
  149. 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: 19
5
- prerelease: false
4
+ hash: 62196449
5
+ prerelease: 6
6
6
  segments:
7
- - 1
8
- - 1
7
+ - 2
8
+ - 0
9
9
  - 0
10
- version: 1.1.0
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-01-15 00:00:00 +01:00
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: 9
30
+ hash: 27
30
31
  segments:
31
- - 1
32
- - 3
33
- version: "1.3"
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: rspec-rails
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: 15
46
+ hash: 62196353
45
47
  segments:
46
- - 2
48
+ - 1
47
49
  - 0
48
50
  - 0
49
- version: 2.0.0
50
- type: :development
51
+ - beta
52
+ - 1
53
+ version: 1.0.0.beta1
54
+ type: :runtime
51
55
  version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
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
- - MIT-LICENSE
120
- - Rakefile
121
- - README.rdoc
122
- - lib/rspec-1/steak.rb
123
- - lib/rspec-2/rails/generators/install_generator.rb
124
- - lib/rspec-2/rails/generators/spec_generator.rb
125
- - lib/rspec-2/rails/generators/templates/acceptance_helper.rb
126
- - lib/rspec-2/rails/generators/templates/acceptance_spec.rb
127
- - lib/rspec-2/rails/generators/templates/helpers.rb
128
- - lib/rspec-2/rails/generators/templates/paths.rb
129
- - lib/rspec-2/rails/railtie.rb
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
- - spec/acceptance/rspec-1/acceptance_helper.rb
134
- - spec/acceptance/rspec-1/acceptance_spec_generator_spec.rb
135
- - spec/acceptance/rspec-1/basic_spec.rb
136
- - spec/acceptance/rspec-1/rails_spec.rb
137
- - spec/acceptance/rspec-1/steak_generator_spec.rb
138
- - spec/acceptance/rspec-2/acceptance_helper.rb
139
- - spec/acceptance/rspec-2/basic_spec.rb
140
- - spec/acceptance/rspec-2/rails_spec.rb
141
- - spec/acceptance/rspec-2/steak_install_generator_spec.rb
142
- - spec/acceptance/rspec-2/steak_spec_generator_spec.rb
143
- - generators/acceptance_spec/acceptance_spec_generator.rb
144
- - generators/acceptance_spec/templates/acceptance_spec.rb
145
- - generators/acceptance_spec/USAGE
146
- - generators/steak/steak_generator.rb
147
- - generators/steak/templates/acceptance_helper.rb
148
- - generators/steak/templates/helpers.rb
149
- - generators/steak/templates/paths.rb
150
- - generators/steak/templates/steak.rake
151
- - generators/steak/USAGE
152
- has_rdoc: true
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: 3
206
+ hash: 25
176
207
  segments:
177
- - 0
178
- version: "0"
208
+ - 1
209
+ - 3
210
+ - 1
211
+ version: 1.3.1
179
212
  requirements: []
180
213
 
181
214
  rubyforge_project:
182
- rubygems_version: 1.3.7
215
+ rubygems_version: 1.8.5
183
216
  signing_key:
184
217
  specification_version: 3
185
- summary: Minimalist acceptance testing on top of RSpec
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