chromedriver-helper 0.0.9 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +2 -22
- data/chromedriver-helper.gemspec +9 -7
- data/lib/chromedriver/helper/version.rb +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df768e5ebc420cae5c5ba9d9a512e39f36030a1d
|
4
|
+
data.tar.gz: e8f602c7919db642e7cd94d28370a3b6b45d9e0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 626d368e041ad821f3d503162f0edbd0f1f62a52f612e90f5f320e5854ffacd68cee55f9f354189eb0189a2df3960c8814539424c0c4977b510954c5fef9023b
|
7
|
+
data.tar.gz: 37c6653d713d2f5e53837903cfe1882e467f6edb0f1c7d58eb7b7859c563f35d6705107d888894c391468cc2d84a110de828dbc415fa52d65af121a66ec9cee8
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
(The MIT License)
|
2
|
+
|
3
|
+
Copyright (c) 2011,2012,2013,2014,2015: [Mike Dalessio](http://mike.daless.io)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
'Software'), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
20
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
21
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
22
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -57,28 +57,8 @@ Open a Github Issue, or send a pull request! Thanks! You're the best.
|
|
57
57
|
|
58
58
|
# License
|
59
59
|
|
60
|
-
|
61
|
-
|
62
|
-
Copyright (c) 2011: [Mike Dalessio](http://mike.daless.io)
|
63
|
-
|
64
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
65
|
-
a copy of this software and associated documentation files (the
|
66
|
-
'Software'), to deal in the Software without restriction, including
|
67
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
68
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
69
|
-
permit persons to whom the Software is furnished to do so, subject to
|
70
|
-
the following conditions:
|
71
|
-
|
72
|
-
The above copyright notice and this permission notice shall be
|
73
|
-
included in all copies or substantial portions of the Software.
|
74
|
-
|
75
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
76
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
77
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
78
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
79
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
80
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
81
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
60
|
+
MIT licensed, see LICENSE.txt for full details.
|
61
|
+
|
82
62
|
|
83
63
|
# Credit
|
84
64
|
|
data/chromedriver-helper.gemspec
CHANGED
@@ -6,18 +6,20 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.name = "chromedriver-helper"
|
7
7
|
s.version = Chromedriver::Helper::VERSION
|
8
8
|
s.authors = ["Mike Dalessio"]
|
9
|
-
s.email = ["mike@
|
10
|
-
s.homepage = ""
|
11
|
-
s.summary = "Easy installation and use of chromedriver
|
9
|
+
s.email = ["mike.dalessio@gmail.com"]
|
10
|
+
s.homepage = "https://github.com/flavorjones/loofah"
|
11
|
+
s.summary = "Easy installation and use of chromedriver."
|
12
12
|
s.description = "Easy installation and use of chromedriver, the Chromium project's selenium webdriver adapter."
|
13
|
+
s.licenses = ["MIT"]
|
13
14
|
|
14
15
|
s.files = `git ls-files`.split("\n")
|
15
16
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
18
|
s.require_paths = ["lib"]
|
18
19
|
|
19
|
-
s.add_development_dependency "rspec",
|
20
|
-
s.add_development_dependency "rake"
|
21
|
-
|
22
|
-
s.add_runtime_dependency "
|
20
|
+
s.add_development_dependency "rspec", "~> 3.0"
|
21
|
+
s.add_development_dependency "rake", "~> 10.0"
|
22
|
+
|
23
|
+
s.add_runtime_dependency "nokogiri", "~> 1.6"
|
24
|
+
s.add_runtime_dependency "archive-zip", "~> 0.7.0"
|
23
25
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chromedriver-helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
33
|
+
version: '10.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
40
|
+
version: '10.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: nokogiri
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -69,7 +69,7 @@ dependencies:
|
|
69
69
|
description: Easy installation and use of chromedriver, the Chromium project's selenium
|
70
70
|
webdriver adapter.
|
71
71
|
email:
|
72
|
-
- mike@
|
72
|
+
- mike.dalessio@gmail.com
|
73
73
|
executables:
|
74
74
|
- chromedriver
|
75
75
|
- chromedriver-update
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- ".travis.yml"
|
81
81
|
- CHANGELOG.md
|
82
82
|
- Gemfile
|
83
|
+
- LICENSE.txt
|
83
84
|
- README.md
|
84
85
|
- Rakefile
|
85
86
|
- bin/chromedriver
|
@@ -93,8 +94,9 @@ files:
|
|
93
94
|
- spec/google_code_parser_spec.rb
|
94
95
|
- spec/helper_spec.rb
|
95
96
|
- spec/spec_helper.rb
|
96
|
-
homepage:
|
97
|
-
licenses:
|
97
|
+
homepage: https://github.com/flavorjones/loofah
|
98
|
+
licenses:
|
99
|
+
- MIT
|
98
100
|
metadata: {}
|
99
101
|
post_install_message:
|
100
102
|
rdoc_options: []
|
@@ -115,6 +117,5 @@ rubyforge_project:
|
|
115
117
|
rubygems_version: 2.4.6
|
116
118
|
signing_key:
|
117
119
|
specification_version: 4
|
118
|
-
summary: Easy installation and use of chromedriver
|
119
|
-
webdriver adapter.
|
120
|
+
summary: Easy installation and use of chromedriver.
|
120
121
|
test_files: []
|