puffing-billy 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +0 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/lib/billy/browsers/capybara.rb +4 -1
- data/lib/billy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49c2a689f350d56b8719c2d63a9ee65a8b9e08a6
|
4
|
+
data.tar.gz: c7f1d50a3a17009c4e394ed87a4c07cae64dc0de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85873ec39d4108e7914ed711f777b9ac96a50250ebff960840132410d9dc221837982d4c90c086b4257681a073850340c96ffb08f1ba3d52d007271ff8b50511
|
7
|
+
data.tar.gz: ba586d5487c7bef9c682fc834c06c91f2e93364cc450ed4c74ab868a2399ec61a907f5d44d8cf728e7fd66d83c0cf41920df0aae4ad05e9b973421632d25971e
|
data/.travis.yml
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
language: ruby
|
2
2
|
before_install:
|
3
3
|
- gem install bundler
|
4
|
-
- mkdir travis-phantomjs
|
5
|
-
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
|
6
|
-
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
|
7
|
-
- export PATH=$PWD/travis-phantomjs:$PATH
|
8
4
|
- phantomjs --version
|
9
5
|
rvm:
|
10
6
|
- 1.9.3
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
v0.10.1, 2017-10-12
|
2
|
+
-------------------
|
3
|
+
* Fix selenium webdriver deprecation warning [#194](https://github.com/oesmith/puffing-billy/pull/194)
|
4
|
+
|
1
5
|
v0.10.0, 2017-04-06
|
2
6
|
-------------------
|
3
7
|
* Allow to simulate network delays when responding from cache [#182](https://github.com/oesmith/puffing-billy/pull/182)
|
data/Gemfile.lock
CHANGED
@@ -55,9 +55,12 @@ module Billy
|
|
55
55
|
end
|
56
56
|
|
57
57
|
::Capybara.register_driver :selenium_chrome_billy do |app|
|
58
|
+
options = Selenium::WebDriver::Chrome::Options.new
|
59
|
+
options.add_argument("--proxy-server=#{Billy.proxy.host}:#{Billy.proxy.port}")
|
60
|
+
|
58
61
|
::Capybara::Selenium::Driver.new(
|
59
62
|
app, browser: :chrome,
|
60
|
-
|
63
|
+
options: options
|
61
64
|
)
|
62
65
|
end
|
63
66
|
end
|
data/lib/billy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puffing-billy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olly Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|