capybara-screenshot 0.3.22 → 1.0.0
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rspec +1 -1
- data/.travis.yml +9 -0
- data/Appraisals +31 -0
- data/CHANGELOG.md +16 -0
- data/Gemfile +1 -0
- data/README.md +23 -17
- data/Rakefile +9 -1
- data/capybara-screenshot.gemspec +7 -1
- data/gemfiles/cucumber.1.2.gemfile +9 -0
- data/gemfiles/cucumber.1.2.gemfile.lock +99 -0
- data/gemfiles/cucumber.1.3.0.gemfile +9 -0
- data/gemfiles/cucumber.1.3.0.gemfile.lock +100 -0
- data/gemfiles/latest.gemfile +8 -0
- data/gemfiles/latest.gemfile.lock +102 -0
- data/gemfiles/rspec.2.14.gemfile +9 -0
- data/gemfiles/rspec.2.14.gemfile.lock +98 -0
- data/gemfiles/rspec.2.99.gemfile +9 -0
- data/gemfiles/rspec.2.99.gemfile.lock +98 -0
- data/gemfiles/rspec.3.0.gemfile +9 -0
- data/gemfiles/rspec.3.0.gemfile.lock +102 -0
- data/gemfiles/spinach.0.7.gemfile +9 -0
- data/gemfiles/spinach.0.7.gemfile.lock +100 -0
- data/gemfiles/spinach.0.8.0.gemfile +9 -0
- data/gemfiles/spinach.0.8.0.gemfile.lock +100 -0
- data/lib/capybara-screenshot.rb +5 -0
- data/lib/capybara-screenshot/capybara.rb +12 -0
- data/lib/capybara-screenshot/cucumber.rb +18 -12
- data/lib/capybara-screenshot/minitest.rb +15 -16
- data/lib/capybara-screenshot/rspec.rb +19 -11
- data/lib/capybara-screenshot/rspec/text_reporter.rb +21 -3
- data/lib/capybara-screenshot/spinach.rb +22 -6
- data/lib/capybara-screenshot/testunit.rb +25 -7
- data/lib/capybara-screenshot/version.rb +1 -1
- data/spec/cucumber/cucumber_spec.rb +64 -0
- data/spec/cucumber/step_definitions/step_definitions.rb +18 -0
- data/spec/cucumber/support/env.rb +17 -0
- data/spec/feature/minitest_spec.rb +90 -0
- data/spec/feature/testunit_spec.rb +71 -0
- data/spec/rspec/rspec_spec.rb +101 -0
- data/spec/spec_helper.rb +9 -1
- data/spec/spinach/spinach_spec.rb +53 -0
- data/spec/spinach/support/spinach_failure.rb +41 -0
- data/spec/support/common_setup.rb +28 -0
- data/spec/support/html_reporter_context.rb +1 -1
- data/spec/support/test_app.rb +13 -0
- data/spec/{rspec → unit}/base_reporter_spec.rb +2 -2
- data/spec/{rspec_spec.rb → unit/capybara-screenshot_rspec_spec.rb} +15 -10
- data/spec/{capybara-screenshot_spec.rb → unit/capybara-screenshot_spec.rb} +8 -8
- data/spec/unit/capybara_spec.rb +50 -0
- data/spec/{rspec → unit/rspec_reporters}/html_embed_reporter_spec.rb +2 -2
- data/spec/{rspec → unit/rspec_reporters}/html_link_reporter_spec.rb +2 -2
- data/spec/unit/rspec_reporters/text_reporter_spec.rb +96 -0
- data/spec/{rspec → unit/rspec_reporters}/textmate_link_reporter_spec.rb +5 -3
- data/spec/unit/saver_spec.rb +269 -0
- metadata +161 -41
- data/spec/capybara-screenshot/capybara_spec.rb +0 -18
- data/spec/capybara-screenshot/saver_spec.rb +0 -269
- data/spec/rspec/text_reporter_spec.rb +0 -76
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7126ec4ebeb17032c6345e1609d180e2bd2f4b22
|
4
|
+
data.tar.gz: 5f1ada5295afadf63c2a5fa6885ee0b930f12a45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4e3ad03d2618f66168288493bc7452e17a01abe324431ebde7a282b7a9a0497b887edf2f8715e02ebae94068036e47efa7d28594bf3a17446219d587a8bd75
|
7
|
+
data.tar.gz: 4828c6d1f7687c3c3e26f1c7d6236ebf5a3f28f376ea740abe892ef16a7199b027b42f5b15524c5487fc329ecbdffe826045088aca6d51caf043e09eb50bbfbd
|
data/.gitignore
CHANGED
data/.rspec
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
--color
|
2
|
-
--format
|
2
|
+
--format documentation
|
data/.travis.yml
CHANGED
@@ -5,3 +5,12 @@ rvm:
|
|
5
5
|
- 2.0.0
|
6
6
|
- 2.1.1
|
7
7
|
- jruby-19mode # JRuby in 1.9 mode
|
8
|
+
gemfile:
|
9
|
+
- gemfiles/cucumber.1.2.gemfile
|
10
|
+
- gemfiles/cucumber.1.3.0.gemfile
|
11
|
+
- gemfiles/latest.gemfile
|
12
|
+
- gemfiles/rspec.2.14.gemfile
|
13
|
+
- gemfiles/rspec.2.99.gemfile
|
14
|
+
- gemfiles/rspec.3.0.gemfile
|
15
|
+
- gemfiles/spinach.0.7.gemfile
|
16
|
+
- gemfiles/spinach.0.8.0.gemfile
|
data/Appraisals
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
appraise "rspec.2.14" do
|
2
|
+
gem "rspec", "2.14"
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise "rspec.2.99" do
|
6
|
+
gem "rspec", "2.99"
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise "rspec.3.0" do
|
10
|
+
gem "rspec", "3.0"
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise "cucumber.1.2" do
|
14
|
+
gem "cucumber", "1.2"
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise "cucumber.1.3.0" do
|
18
|
+
gem "cucumber", "1.3.0"
|
19
|
+
end
|
20
|
+
|
21
|
+
appraise "spinach.0.7" do
|
22
|
+
gem "spinach", "0.7"
|
23
|
+
end
|
24
|
+
|
25
|
+
appraise "spinach.0.8.0" do
|
26
|
+
gem "spinach", "0.8.0"
|
27
|
+
end
|
28
|
+
|
29
|
+
appraise "latest" do
|
30
|
+
# will get latest versions of all gems
|
31
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
18 September 2014 - 0.3.22 -> 1.0.0
|
2
|
+
-----------
|
3
|
+
|
4
|
+
Because of the broad test coverage now across RSpec, Cucumber, Spinach, Minitest and TestUnit using [Aruba](https://github.com/cucumber/aruba), I feel that this gem is ready for its first major release. New features and refactoring can now reliably be done without the fear of regressions.
|
5
|
+
|
6
|
+
The major changes in this 1.0 release are:
|
7
|
+
|
8
|
+
* Acceptance test coverage for RSpec, Cucumber, Spinach, Minitest and TestUnit
|
9
|
+
* Travis CI test coverage across a matrix of old and new versions of the aforementioned testing frameworks, see https://github.com/mattheworiordan/capybara-screenshot/blob/master/.travis.yml
|
10
|
+
* Support for RSpec 3 using the custom formatters
|
11
|
+
* Support for sessions using `using_session`, see https://github.com/mattheworiordan/capybara-screenshot/pull/91 for more info
|
12
|
+
* Support for RSpec DocumentationFormatter
|
13
|
+
* Considerable refactoring of the test suite
|
14
|
+
|
15
|
+
Special thanks goes to [Andrew Brown](https://github.com/dontfidget) who has contributed a huge amount of the code that has helped enable this Gem to have its stable major version release.
|
16
|
+
|
1
17
|
22 July 2014 - 0.3.21 -> 0.3.22
|
2
18
|
-----------
|
3
19
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -6,11 +6,13 @@ capybara-screenshot gem
|
|
6
6
|
screenshot)
|
7
7
|
[](http://badge.fury.io/rb/capybara-screenshot)
|
8
8
|
|
9
|
-
|
9
|
+
#### Capture a screen shot for every test failure automatically!
|
10
10
|
|
11
|
-
|
11
|
+
`capybara-screenshot` used with [Capybara](https://github.com/jnicklas/capybara) and [Cucumber](http://cukes.info/), [Rspec](https://www.relishapp.com/rspec) or [Minitest](https://github.com/seattlerb/minitest), will capture a screen shot for each failure in your test suite. The HTML for the failed page, and a screenshot image (when using [capybara-webkit](https://github.com/thoughtbot/capybara-webkit), [Selenium](http://seleniumhq.org/) or [poltergeist](https://github.com/jonleighton/poltergeist)) is saved into `$APPLICATION_ROOT/tmp/capybara`.
|
12
12
|
|
13
|
-
|
13
|
+
Having screenshots readily available for each test failure is incredibly helpful when trying to quickly diagnose a problem in your failing steps. You can view the source code, and have a screen shot of the page (when applicable), at the time of each failure.
|
14
|
+
|
15
|
+
_Please note that Ruby 1.9+ is required to use this Gem. For Ruby 1.8 support, please see the [capybara-screenshot Ruby 1.8 branch](https://github.com/mattheworiordan/capybara-screenshot/tree/ruby-1.8-support)_
|
14
16
|
|
15
17
|
Installation
|
16
18
|
-----
|
@@ -45,6 +47,10 @@ For **Test::Unit**, typically in 'test/test_helper.rb', please add:
|
|
45
47
|
|
46
48
|
require 'capybara-screenshot/testunit'
|
47
49
|
|
50
|
+
By default, screenshots will be captured for `Test::Unit` tests in the path 'test/integration'. You can add additional paths as:
|
51
|
+
|
52
|
+
Capybara::Screenshot.testunit_paths << 'test/feature'
|
53
|
+
|
48
54
|
Manual screenshots
|
49
55
|
----
|
50
56
|
|
@@ -80,7 +86,7 @@ rendering, so it has a driver definition as a noop.
|
|
80
86
|
|
81
87
|
Capybara-webkit defaults to a screenshot size of 1000px by 10px. To specify a custom size, use the following option:
|
82
88
|
|
83
|
-
Capybara::Screenshot.webkit_options = {width: 1024, height: 768}
|
89
|
+
Capybara::Screenshot.webkit_options = { width: 1024, height: 768 }
|
84
90
|
|
85
91
|
If a driver is not found the default rendering will be used. If this doesn't work with your driver, then you can
|
86
92
|
add another driver configuration like so
|
@@ -127,14 +133,6 @@ It’s also possible to directly embed the screenshot image in the output if you
|
|
127
133
|
If you want to further customize the information added to RSpec’s output, just implement your own reporter class and customize `Capybara::Screenshot::RSpec::REPORTERS` accordingly. See [rspec.rb](lib/capybara-screenshot/rspec.rb) for more info.
|
128
134
|
|
129
135
|
|
130
|
-
Example application
|
131
|
-
-------------------
|
132
|
-
|
133
|
-
A simple Rails 3.1 example application has been set up at [https://github.com/mattheworiordan/capybara-screenshot-test-rails-3.1](https://github.com/mattheworiordan/capybara-screenshot-test-rails-3.1)
|
134
|
-
Git clone the app, and then run Cucumber `rake cucumber`, RSpec `rake spec` and Minitest `rake test` and expect intentional failures.
|
135
|
-
Now check the $APPLICATION_ROOT/tmp/capybara folder for the automatic screen shots generated from failed tests.
|
136
|
-
|
137
|
-
|
138
136
|
Common problems
|
139
137
|
---------------
|
140
138
|
|
@@ -148,17 +146,25 @@ Also make sure that you're not calling `Capybara.reset_sessions!` before the scr
|
|
148
146
|
|
149
147
|
[Raise an issue on the Capybara-Screenshot issue tracker](https://github.com/mattheworiordan/capybara-screenshot/issues) if you are still having problems.
|
150
148
|
|
151
|
-
Repository
|
152
|
-
|
149
|
+
Repository & Contributing to this Gem
|
150
|
+
-------------------------------------
|
151
|
+
|
152
|
+
#### Bugs
|
153
|
+
|
154
|
+
Please raise an issue at [https://github.com/mattheworiordan/capybara-screenshot/issues](https://github.com/mattheworiordan/capybara-screenshot/issues) and ensure you provide sufficient detail to replicate the problem.
|
155
|
+
|
156
|
+
#### Contributions
|
157
|
+
|
158
|
+
Contributions are welcome. Please fork this gem, and submit a pull request. New features must include test coverage and must pass on all versions of the testing frameworks supported. Run `appraisal "bundle exec rspec && bundle exec cucumber"` locally to test your changes against all versions of testing framework gems supported.
|
153
159
|
|
154
|
-
|
160
|
+
#### Rubygems
|
155
161
|
|
156
162
|
The gem details on RubyGems.org can be found at [https://rubygems.org/gems/capybara-screenshot](https://rubygems.org/gems/capybara-screenshot)
|
157
163
|
|
158
164
|
About
|
159
165
|
-----
|
160
166
|
|
161
|
-
This gem was written by **Matthew O'Riordan
|
167
|
+
This gem was written by **Matthew O'Riordan**, with contributions from [many kind people](https://github.com/mattheworiordan/capybara-screenshot/network/members).
|
162
168
|
|
163
169
|
- [http://mattheworiordan.com](http://mattheworiordan.com)
|
164
170
|
- [@mattheworiordan](http://twitter.com/#!/mattheworiordan)
|
@@ -167,4 +173,4 @@ This gem was written by **Matthew O'Riordan**
|
|
167
173
|
License
|
168
174
|
-------
|
169
175
|
|
170
|
-
Copyright ©
|
176
|
+
Copyright © 2014 Matthew O'Riordan, inc. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|
data/Rakefile
CHANGED
data/capybara-screenshot.gemspec
CHANGED
@@ -23,8 +23,14 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.add_dependency 'launchy'
|
24
24
|
s.add_dependency 'colored'
|
25
25
|
|
26
|
-
s.add_development_dependency 'rspec'
|
26
|
+
s.add_development_dependency 'rspec'
|
27
27
|
s.add_development_dependency 'timecop'
|
28
|
+
s.add_development_dependency 'cucumber'
|
29
|
+
s.add_development_dependency 'aruba'
|
30
|
+
s.add_development_dependency 'sinatra'
|
31
|
+
s.add_development_dependency 'test-unit'
|
32
|
+
s.add_development_dependency 'spinach'
|
33
|
+
s.add_development_dependency 'minitest'
|
28
34
|
|
29
35
|
s.files = `git ls-files`.split("\n")
|
30
36
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
@@ -0,0 +1,99 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
capybara-screenshot (1.0.0)
|
5
|
+
capybara (>= 1.0, < 3)
|
6
|
+
colored
|
7
|
+
launchy
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
addressable (2.3.6)
|
13
|
+
appraisal (1.0.2)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
aruba (0.6.1)
|
18
|
+
childprocess (>= 0.3.6)
|
19
|
+
cucumber (>= 1.1.1)
|
20
|
+
rspec-expectations (>= 2.7.0)
|
21
|
+
builder (3.2.2)
|
22
|
+
capybara (2.4.1)
|
23
|
+
mime-types (>= 1.16)
|
24
|
+
nokogiri (>= 1.3.3)
|
25
|
+
rack (>= 1.0.0)
|
26
|
+
rack-test (>= 0.5.4)
|
27
|
+
xpath (~> 2.0)
|
28
|
+
childprocess (0.5.3)
|
29
|
+
ffi (~> 1.0, >= 1.0.11)
|
30
|
+
colored (1.2)
|
31
|
+
colorize (0.7.3)
|
32
|
+
cucumber (1.2.0)
|
33
|
+
builder (>= 2.1.2)
|
34
|
+
diff-lcs (>= 1.1.3)
|
35
|
+
gherkin (~> 2.10.0)
|
36
|
+
json (>= 1.4.6)
|
37
|
+
diff-lcs (1.2.5)
|
38
|
+
ffi (1.9.3)
|
39
|
+
gherkin (2.10.0)
|
40
|
+
json (>= 1.4.6)
|
41
|
+
gherkin-ruby (0.3.2)
|
42
|
+
json (1.8.1)
|
43
|
+
launchy (2.4.2)
|
44
|
+
addressable (~> 2.3)
|
45
|
+
mime-types (2.3)
|
46
|
+
mini_portile (0.6.0)
|
47
|
+
minitest (5.4.1)
|
48
|
+
nokogiri (1.6.3.1)
|
49
|
+
mini_portile (= 0.6.0)
|
50
|
+
power_assert (0.1.3)
|
51
|
+
rack (1.5.2)
|
52
|
+
rack-protection (1.5.3)
|
53
|
+
rack
|
54
|
+
rack-test (0.6.2)
|
55
|
+
rack (>= 1.0)
|
56
|
+
rake (10.3.2)
|
57
|
+
rspec (3.1.0)
|
58
|
+
rspec-core (~> 3.1.0)
|
59
|
+
rspec-expectations (~> 3.1.0)
|
60
|
+
rspec-mocks (~> 3.1.0)
|
61
|
+
rspec-core (3.1.3)
|
62
|
+
rspec-support (~> 3.1.0)
|
63
|
+
rspec-expectations (3.1.1)
|
64
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
65
|
+
rspec-support (~> 3.1.0)
|
66
|
+
rspec-mocks (3.1.0)
|
67
|
+
rspec-support (~> 3.1.0)
|
68
|
+
rspec-support (3.1.0)
|
69
|
+
sinatra (1.4.5)
|
70
|
+
rack (~> 1.4)
|
71
|
+
rack-protection (~> 1.4)
|
72
|
+
tilt (~> 1.3, >= 1.3.4)
|
73
|
+
spinach (0.8.10)
|
74
|
+
colorize
|
75
|
+
gherkin-ruby (>= 0.3.2)
|
76
|
+
json
|
77
|
+
test-unit (3.0.1)
|
78
|
+
power_assert
|
79
|
+
thor (0.19.1)
|
80
|
+
tilt (1.4.1)
|
81
|
+
timecop (0.7.1)
|
82
|
+
xpath (2.0.0)
|
83
|
+
nokogiri (~> 1.3)
|
84
|
+
|
85
|
+
PLATFORMS
|
86
|
+
ruby
|
87
|
+
|
88
|
+
DEPENDENCIES
|
89
|
+
appraisal
|
90
|
+
aruba
|
91
|
+
capybara-screenshot!
|
92
|
+
cucumber (= 1.2)
|
93
|
+
minitest
|
94
|
+
rake
|
95
|
+
rspec
|
96
|
+
sinatra
|
97
|
+
spinach
|
98
|
+
test-unit
|
99
|
+
timecop
|
@@ -0,0 +1,100 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
capybara-screenshot (1.0.0)
|
5
|
+
capybara (>= 1.0, < 3)
|
6
|
+
colored
|
7
|
+
launchy
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
addressable (2.3.6)
|
13
|
+
appraisal (1.0.2)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
aruba (0.6.1)
|
18
|
+
childprocess (>= 0.3.6)
|
19
|
+
cucumber (>= 1.1.1)
|
20
|
+
rspec-expectations (>= 2.7.0)
|
21
|
+
builder (3.2.2)
|
22
|
+
capybara (2.4.1)
|
23
|
+
mime-types (>= 1.16)
|
24
|
+
nokogiri (>= 1.3.3)
|
25
|
+
rack (>= 1.0.0)
|
26
|
+
rack-test (>= 0.5.4)
|
27
|
+
xpath (~> 2.0)
|
28
|
+
childprocess (0.5.3)
|
29
|
+
ffi (~> 1.0, >= 1.0.11)
|
30
|
+
colored (1.2)
|
31
|
+
colorize (0.7.3)
|
32
|
+
cucumber (1.3.0)
|
33
|
+
builder (>= 2.1.2)
|
34
|
+
diff-lcs (>= 1.1.3)
|
35
|
+
gherkin (~> 2.12.0)
|
36
|
+
multi_json (~> 1.3)
|
37
|
+
diff-lcs (1.2.5)
|
38
|
+
ffi (1.9.3)
|
39
|
+
gherkin (2.12.2)
|
40
|
+
multi_json (~> 1.3)
|
41
|
+
gherkin-ruby (0.3.2)
|
42
|
+
json (1.8.1)
|
43
|
+
launchy (2.4.2)
|
44
|
+
addressable (~> 2.3)
|
45
|
+
mime-types (2.3)
|
46
|
+
mini_portile (0.6.0)
|
47
|
+
minitest (5.4.1)
|
48
|
+
multi_json (1.10.1)
|
49
|
+
nokogiri (1.6.3.1)
|
50
|
+
mini_portile (= 0.6.0)
|
51
|
+
power_assert (0.1.3)
|
52
|
+
rack (1.5.2)
|
53
|
+
rack-protection (1.5.3)
|
54
|
+
rack
|
55
|
+
rack-test (0.6.2)
|
56
|
+
rack (>= 1.0)
|
57
|
+
rake (10.3.2)
|
58
|
+
rspec (3.1.0)
|
59
|
+
rspec-core (~> 3.1.0)
|
60
|
+
rspec-expectations (~> 3.1.0)
|
61
|
+
rspec-mocks (~> 3.1.0)
|
62
|
+
rspec-core (3.1.3)
|
63
|
+
rspec-support (~> 3.1.0)
|
64
|
+
rspec-expectations (3.1.1)
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
66
|
+
rspec-support (~> 3.1.0)
|
67
|
+
rspec-mocks (3.1.0)
|
68
|
+
rspec-support (~> 3.1.0)
|
69
|
+
rspec-support (3.1.0)
|
70
|
+
sinatra (1.4.5)
|
71
|
+
rack (~> 1.4)
|
72
|
+
rack-protection (~> 1.4)
|
73
|
+
tilt (~> 1.3, >= 1.3.4)
|
74
|
+
spinach (0.8.10)
|
75
|
+
colorize
|
76
|
+
gherkin-ruby (>= 0.3.2)
|
77
|
+
json
|
78
|
+
test-unit (3.0.1)
|
79
|
+
power_assert
|
80
|
+
thor (0.19.1)
|
81
|
+
tilt (1.4.1)
|
82
|
+
timecop (0.7.1)
|
83
|
+
xpath (2.0.0)
|
84
|
+
nokogiri (~> 1.3)
|
85
|
+
|
86
|
+
PLATFORMS
|
87
|
+
ruby
|
88
|
+
|
89
|
+
DEPENDENCIES
|
90
|
+
appraisal
|
91
|
+
aruba
|
92
|
+
capybara-screenshot!
|
93
|
+
cucumber (= 1.3.0)
|
94
|
+
minitest
|
95
|
+
rake
|
96
|
+
rspec
|
97
|
+
sinatra
|
98
|
+
spinach
|
99
|
+
test-unit
|
100
|
+
timecop
|
@@ -0,0 +1,102 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
capybara-screenshot (1.0.0)
|
5
|
+
capybara (>= 1.0, < 3)
|
6
|
+
colored
|
7
|
+
launchy
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
addressable (2.3.6)
|
13
|
+
appraisal (1.0.2)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
aruba (0.6.1)
|
18
|
+
childprocess (>= 0.3.6)
|
19
|
+
cucumber (>= 1.1.1)
|
20
|
+
rspec-expectations (>= 2.7.0)
|
21
|
+
builder (3.2.2)
|
22
|
+
capybara (2.4.1)
|
23
|
+
mime-types (>= 1.16)
|
24
|
+
nokogiri (>= 1.3.3)
|
25
|
+
rack (>= 1.0.0)
|
26
|
+
rack-test (>= 0.5.4)
|
27
|
+
xpath (~> 2.0)
|
28
|
+
childprocess (0.5.3)
|
29
|
+
ffi (~> 1.0, >= 1.0.11)
|
30
|
+
colored (1.2)
|
31
|
+
colorize (0.7.3)
|
32
|
+
cucumber (1.3.17)
|
33
|
+
builder (>= 2.1.2)
|
34
|
+
diff-lcs (>= 1.1.3)
|
35
|
+
gherkin (~> 2.12)
|
36
|
+
multi_json (>= 1.7.5, < 2.0)
|
37
|
+
multi_test (>= 0.1.1)
|
38
|
+
diff-lcs (1.2.5)
|
39
|
+
ffi (1.9.3)
|
40
|
+
gherkin (2.12.2)
|
41
|
+
multi_json (~> 1.3)
|
42
|
+
gherkin-ruby (0.3.2)
|
43
|
+
json (1.8.1)
|
44
|
+
launchy (2.4.2)
|
45
|
+
addressable (~> 2.3)
|
46
|
+
mime-types (2.3)
|
47
|
+
mini_portile (0.6.0)
|
48
|
+
minitest (5.4.1)
|
49
|
+
multi_json (1.10.1)
|
50
|
+
multi_test (0.1.1)
|
51
|
+
nokogiri (1.6.3.1)
|
52
|
+
mini_portile (= 0.6.0)
|
53
|
+
power_assert (0.1.3)
|
54
|
+
rack (1.5.2)
|
55
|
+
rack-protection (1.5.3)
|
56
|
+
rack
|
57
|
+
rack-test (0.6.2)
|
58
|
+
rack (>= 1.0)
|
59
|
+
rake (10.3.2)
|
60
|
+
rspec (3.1.0)
|
61
|
+
rspec-core (~> 3.1.0)
|
62
|
+
rspec-expectations (~> 3.1.0)
|
63
|
+
rspec-mocks (~> 3.1.0)
|
64
|
+
rspec-core (3.1.3)
|
65
|
+
rspec-support (~> 3.1.0)
|
66
|
+
rspec-expectations (3.1.1)
|
67
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
68
|
+
rspec-support (~> 3.1.0)
|
69
|
+
rspec-mocks (3.1.0)
|
70
|
+
rspec-support (~> 3.1.0)
|
71
|
+
rspec-support (3.1.0)
|
72
|
+
sinatra (1.4.5)
|
73
|
+
rack (~> 1.4)
|
74
|
+
rack-protection (~> 1.4)
|
75
|
+
tilt (~> 1.3, >= 1.3.4)
|
76
|
+
spinach (0.8.10)
|
77
|
+
colorize
|
78
|
+
gherkin-ruby (>= 0.3.2)
|
79
|
+
json
|
80
|
+
test-unit (3.0.1)
|
81
|
+
power_assert
|
82
|
+
thor (0.19.1)
|
83
|
+
tilt (1.4.1)
|
84
|
+
timecop (0.7.1)
|
85
|
+
xpath (2.0.0)
|
86
|
+
nokogiri (~> 1.3)
|
87
|
+
|
88
|
+
PLATFORMS
|
89
|
+
ruby
|
90
|
+
|
91
|
+
DEPENDENCIES
|
92
|
+
appraisal
|
93
|
+
aruba
|
94
|
+
capybara-screenshot!
|
95
|
+
cucumber
|
96
|
+
minitest
|
97
|
+
rake
|
98
|
+
rspec
|
99
|
+
sinatra
|
100
|
+
spinach
|
101
|
+
test-unit
|
102
|
+
timecop
|