cms_scanner 0.0.37.5 → 0.0.37.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47d1a0b7f0276e308175ef18ae1b81b82adce2ab
4
- data.tar.gz: a4ea66a54e4ff800caf8f00347fe57074a2ae0eb
3
+ metadata.gz: b03f837450ae74f815dee71e262e713d972b145d
4
+ data.tar.gz: 64f19bccdfd164393ffea6b1491abf3bc452964b
5
5
  SHA512:
6
- metadata.gz: 1462e16abe07489a5a018b7e3190838c24053ac1a2ce77346d865e179c7eb273b6d2e0360f9721a62a143f9cc579ecd3499bfbec4fd7ba68ffc52c6158cb362e
7
- data.tar.gz: 052528fc8276c8d4396e7a833164047cf67978d7c10d794b1e7f12fc91faf9053dbbba4cf4aa9d26a5431d9e32b2ea47be91d7f9b78d775e9758ab7acac0c8b0
6
+ metadata.gz: 0837a407387d31590c4975dfc7c983cf4702b0323f59b75e0252c2be84804531252a4fa2445e9abb134d8cc4e2ef36e9c9ca67d1087226711f9cb708b705482d
7
+ data.tar.gz: 8a31fb51a1706b680a5c441c73ca16a412968c6545c316b6fa4e9895056e42f1db4b918a258df99b8ea9c9f6c728af06f69d0cb5a9715f0a40211573be2c25df
data/README.md CHANGED
@@ -11,11 +11,11 @@ The goal of this gem is to provide a quick and easy way to create a CMS/WebSite
11
11
 
12
12
  ## A basic implementation example is available in the example folder.
13
13
 
14
- To start to play with it, copy all its files and folders into a new git repository and run ```bundle install && rake install`` inside it.
15
- It will create a ```cmsscan``` command that you can run against a target, ie ```cmsscan --url https://www.google.com```
14
+ To start to play with it, copy all its files and folders into a new git repository and run `bundle install && rake install` inside it.
15
+ It will create a `cmsscan` command that you can run against a target, ie `cmsscan --url https://www.google.com`
16
16
 
17
17
 
18
- Install Dependencies: ```bundle install```
18
+ Install Dependencies: `bundle install`
19
19
 
20
20
  ## Contributing
21
21
 
@@ -13,9 +13,11 @@ module CMSScanner
13
13
  end
14
14
 
15
15
  # @param [ Version, String ] other
16
+ # rubocop:disable Style/NumericPredicate
16
17
  def ==(other)
17
- (self <=> other).zero?
18
+ (self <=> other) == 0
18
19
  end
20
+ # rubocop:enable all
19
21
 
20
22
  # @param [ Version, String ] other
21
23
  def <(other)
data/cms_scanner.gemspec CHANGED
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
37
37
  s.add_dependency 'yajl-ruby', '~> 1.3.0' # Better JSON parser regarding memory usage
38
38
  s.add_dependency 'addressable', '~> 2.5.0'
39
39
  s.add_dependency 'activesupport', '~> 5.0.0.1'
40
- s.add_dependency 'public_suffix', '~> 2.0.3' # Need to look at changes in the v2
40
+ s.add_dependency 'public_suffix', '~> 2.0.3'
41
41
  s.add_dependency 'ruby-progressbar', '~> 1.8.1'
42
42
  s.add_dependency 'opt_parse_validator', '~> 0.0.13.3'
43
43
 
@@ -1,4 +1,4 @@
1
1
  # Version
2
2
  module CMSScanner
3
- VERSION = '0.0.37.5'.freeze
3
+ VERSION = '0.0.37.6'.freeze
4
4
  end
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.37.5
4
+ version: 0.0.37.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - WPScanTeam
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-06 00:00:00.000000000 Z
11
+ date: 2016-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus