capybara-screenshot_config 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -0
- data/capybara-screenshot_config.gemspec +2 -1
- data/lib/capybara/screenshot_config/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c72725df88b656e7a33d8cd1595130c387bac5b
|
4
|
+
data.tar.gz: 8686dfb0f92a69b2139d7b74c9a3d4bf337315e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32993580974e85dc2a3ddfd391f7cdc5428c2a4d7bf3fb73276f8e3738550dad3a8135746d129355690a3b837e2ae4b9e058ba6e542973ef88bcf26327954eb7
|
7
|
+
data.tar.gz: c96842503aadd993c0b2f341a0c24c7d0720bfc70ccb73e637e4ef4a7bd6538195c3dc75f34a573b5ebdd9060447b37d9d42ad55537334e31891d95be449a000
|
data/README.md
CHANGED
@@ -5,6 +5,20 @@
|
|
5
5
|
|
6
6
|
Easier Capybara screenshot configuration gem.
|
7
7
|
|
8
|
+
## RETIREMENT
|
9
|
+
|
10
|
+
This gem is originally created to make Capybara screenshot configuration easier and unify screenshot save paths. Howerver, the directory can be specified by setting `Capybara.save_path`.
|
11
|
+
|
12
|
+
```rb
|
13
|
+
require "capybara/poltergeist"
|
14
|
+
Capybara.javascript_driver = :poltergeist
|
15
|
+
Capybara.save_path = "screenshot"
|
16
|
+
```
|
17
|
+
|
18
|
+
This gem is no longer maintained. Please use `Capybara.save_path`.
|
19
|
+
|
20
|
+
---
|
21
|
+
|
8
22
|
## Installation
|
9
23
|
|
10
24
|
Add this line to your application's Gemfile:
|
@@ -9,8 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ["me@toshimaru.net"]
|
10
10
|
|
11
11
|
spec.summary = %q{Easier Capybara screenshot configuration}
|
12
|
-
spec.description = %q{Easier Capybara screenshot configuration gem.}
|
12
|
+
spec.description = %q{This gem is no longer maintained. Easier Capybara screenshot configuration gem.}
|
13
13
|
spec.homepage = "https://github.com/toshimaru/capybara-screenshot_config"
|
14
|
+
spec.license = "MIT"
|
14
15
|
|
15
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
17
|
spec.bindir = "exe"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capybara-screenshot_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toshimaru
|
@@ -80,7 +80,8 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description: Easier Capybara screenshot configuration
|
83
|
+
description: This gem is no longer maintained. Easier Capybara screenshot configuration
|
84
|
+
gem.
|
84
85
|
email:
|
85
86
|
- me@toshimaru.net
|
86
87
|
executables: []
|
@@ -100,7 +101,8 @@ files:
|
|
100
101
|
- lib/capybara/screenshot_config/configuration.rb
|
101
102
|
- lib/capybara/screenshot_config/version.rb
|
102
103
|
homepage: https://github.com/toshimaru/capybara-screenshot_config
|
103
|
-
licenses:
|
104
|
+
licenses:
|
105
|
+
- MIT
|
104
106
|
metadata: {}
|
105
107
|
post_install_message:
|
106
108
|
rdoc_options: []
|