cms_scanner 0.0.3 → 0.0.4
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ef4664292e2b76b62b68005c011ad2556c481f3
|
|
4
|
+
data.tar.gz: 837736b39f70241e9a2958974f7184d6b4db13ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c976a3bca14ea5099c5fa8c6260e7b07ae63e792e39896e7a99bb291ef8751a56c08e01e5fed589a85423bf146d25daf8dfd7aa498a0de835adecbf9e3b7741
|
|
7
|
+
data.tar.gz: 6a83afe4347b104509ffcd8732494f8f0ef2fe54f114b462df8ab74f2565032e9a2083384ba16d162e249c6b138c8a1fbf6f6b0073b1a910a25eb6b48bd88c0d
|
data/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (C) 2014 - WPScanTeam
|
|
2
|
+
|
|
3
|
+
This program is free software: you can redistribute it and/or modify
|
|
4
|
+
it under the terms of the GNU General Public License as published by
|
|
5
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
6
|
+
(at your option) any later version.
|
|
7
|
+
|
|
8
|
+
This program is distributed in the hope that it will be useful,
|
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
+
GNU General Public License for more details.
|
|
12
|
+
|
|
13
|
+
You should have received a copy of the GNU General Public License
|
|
14
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/cms_scanner.gemspec
CHANGED
|
@@ -14,14 +14,14 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
s.summary = 'Experimental CMSScanner'
|
|
15
15
|
s.description = 'Experimental CMSScanner'
|
|
16
16
|
s.homepage = 'https://github.com/wpscanteam/CMSScanner'
|
|
17
|
-
s.license = '
|
|
17
|
+
s.license = 'GPL-3.0'
|
|
18
18
|
|
|
19
19
|
s.files = `git ls-files -z`.split("\x0")
|
|
20
20
|
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
|
|
21
21
|
s.test_files = s.files.grep(/^(test|spec|features)\//)
|
|
22
22
|
s.require_path = 'lib'
|
|
23
23
|
|
|
24
|
-
s.add_dependency 'opt_parse_validator', '~> 0.0.
|
|
24
|
+
s.add_dependency 'opt_parse_validator', '~> 0.0.4'
|
|
25
25
|
s.add_dependency 'typhoeus', '~> 0.6.9'
|
|
26
26
|
s.add_dependency 'nokogiri', '~> 1.6.3'
|
|
27
27
|
s.add_dependency 'addressable', '~> 2.3.6'
|
data/lib/cms_scanner/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cms_scanner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- WPScanTeam - Erwan le Rousseau
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: opt_parse_validator
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.0.
|
|
19
|
+
version: 0.0.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.0.
|
|
26
|
+
version: 0.0.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: typhoeus
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -190,6 +190,7 @@ files:
|
|
|
190
190
|
- ".rubocop.yml"
|
|
191
191
|
- ".travis.yml"
|
|
192
192
|
- Gemfile
|
|
193
|
+
- LICENSE
|
|
193
194
|
- README.md
|
|
194
195
|
- Rakefile
|
|
195
196
|
- app/app.rb
|
|
@@ -332,7 +333,7 @@ files:
|
|
|
332
333
|
- spec/spec_helper.rb
|
|
333
334
|
homepage: https://github.com/wpscanteam/CMSScanner
|
|
334
335
|
licenses:
|
|
335
|
-
-
|
|
336
|
+
- GPL-3.0
|
|
336
337
|
metadata: {}
|
|
337
338
|
post_install_message:
|
|
338
339
|
rdoc_options: []
|