awesome_bot 1.17.1 → 1.17.2

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: b3cf1c092e8b2268a453ae9322104d7cdb04eb45
4
- data.tar.gz: 2c9e2b935aa0a6dcc4fe004a46f543e07facf6f5
3
+ metadata.gz: 4819586cc231910efb36899c34ed06e06b574444
4
+ data.tar.gz: 1bf138d33e2a7aa678efe6d1b5422861dd7080dd
5
5
  SHA512:
6
- metadata.gz: 9f49bbe435557f0a0bf4cf5a02a90feca2590efc4ca94f3de3d1ff45a8696672e35e8288ee6ed21152abdef5b7e1407a60a6e9b9a30ddd5785297859fa3097c5
7
- data.tar.gz: 841890e757726514ca372de064fd993a60eb5d7cc5180b52f5a7ef3b837edaaa63ff1fb3b15e5d74a7c6799af5c6357cbc9064c3e29ee1c9045e882cb1e73b55
6
+ metadata.gz: dc190f7116a59e28a3bb8d351b0aa486ee5d6648e0b9980395329b8201a9f555beceef67b4695ae8754740be4246bd693b659a1614bf8168d11426e93d117a8a
7
+ data.tar.gz: b97a26ff88d84dfb477601425dffbce11b73d003d039d809a3e360c871757a0a849af4c9f63ec65bd275a29364f790eb917181c682ffeee5911e4f3e59a48794
data/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
5
 
6
+ # 1.17.2
7
+
8
+ - [cli] output version by [Budh Ram Gurung](https://github.com/budhrg)
9
+ - [gem] update `parallel` to version 1.12.0
10
+
6
11
  # 1.17.1
7
12
 
8
13
  - [parse] fix Markdown link issue by [Richard Littauer](https://github.com/RichardLitt)
data/README.md CHANGED
@@ -149,7 +149,7 @@ To use `awesome_bot` with Travis CI, [connect your repo](https://travis-ci.org/)
149
149
 
150
150
  ```yml
151
151
  language: ruby
152
- rvm: 2.2
152
+ rvm: 2.4.1
153
153
  before_script: gem install awesome_bot
154
154
  script: awesome_bot README.md
155
155
  ```
@@ -161,14 +161,14 @@ notifications:
161
161
  email: false
162
162
  ```
163
163
 
164
- ### Circle CI
164
+ ### CircleCI
165
165
 
166
- If you prefer Circle CI, it'll work too. [Connect your repo](https://circleci.com/) and create a [`circle.yml` file](https://github.com/tmcw/awesome-geojson).
166
+ If you prefer CircleCI, it'll work too. [Connect your repo](https://circleci.com/) and create a [`circle.yml` file](https://github.com/tmcw/awesome-geojson).
167
167
 
168
168
  ```yml
169
169
  machine:
170
170
  ruby:
171
- version: 2.2.0
171
+ version: 2.4.1
172
172
  test:
173
173
  pre:
174
174
  - gem install awesome_bot
@@ -178,12 +178,12 @@ test:
178
178
 
179
179
  ### More
180
180
 
181
- Circle CI, [Codeship](https://codeship.com/), and [Semaphore CI](https://semaphoreci.com/) support running tests without adding a file to the repo (a public configuration file can however help others contribute).
181
+ CircleCI, [Codeship](https://codeship.com/), and [Semaphore CI](https://semaphoreci.com/) support running tests without adding a file to the repo (a public configuration file can however help others contribute).
182
182
 
183
183
  ```
184
184
  # Codeship
185
185
  Setup
186
- rvm use 2.2.0 --install
186
+ rvm use 2.4.1 --install
187
187
  gem install awesome_bot
188
188
 
189
189
  Test
@@ -193,7 +193,7 @@ awesome_bot README.md
193
193
  ```
194
194
  # Semaphore CI
195
195
  Language: Ruby
196
- Ruby version: 2.2
196
+ Ruby version: 2.4.1
197
197
  Databases for: don't generate
198
198
  Setup:
199
199
  gem install awesome_bot
data/awesome_bot.gemspec CHANGED
@@ -21,5 +21,6 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.required_ruby_version = '>= 2.0.0'
23
23
 
24
- spec.add_runtime_dependency 'parallel', '1.11.2' # threading
24
+ spec.add_runtime_dependency 'parallel', '1.12.0' # threading
25
25
  end
26
+
@@ -26,8 +26,9 @@ module AwesomeBot
26
26
  opts.on('--base-url [base url]', String, 'Base URL to use for relative links') { |val| options['base_url'] = val }
27
27
  opts.on('-d', '--request-delay [seconds]', Integer, 'Set request delay') { |val| options['delay'] = val }
28
28
  opts.on('-t', '--set-timeout [seconds]', Integer, 'Set connection timeout') { |val| options['timeout'] = val }
29
- opts.on('--skip-save-results', TrueClass, 'Skip saving results') { |val| options['no_results'] = val }
29
+ opts.on('--skip-save-results', TrueClass, 'Skip saving results') { |val| options['no_results'] = val }
30
30
  opts.on('-w', '--white-list [urls]', Array, 'Comma separated URLs to white list') { |val| options['white_list'] = val }
31
+ opts.on('-v', '--version', String, 'Display version') { |val| puts "#{PROJECT} version #{VERSION}" }
31
32
 
32
33
  opts.on_tail("--help") do
33
34
  puts opts
@@ -5,5 +5,5 @@ module AwesomeBot
5
5
  'Great for "awesome" projects.'
6
6
  PROJECT_URL = 'https://github.com/dkhamsing/awesome_bot'
7
7
 
8
- VERSION = '1.17.1'
8
+ VERSION = '1.17.2'
9
9
  end
@@ -125,3 +125,5 @@ ellerbrock/awesome-typescript
125
125
  cdleon/awesome-front-end
126
126
  adriagalin/tools
127
127
  arthurwayne/awesome-pentester
128
+ alister/php-in-london
129
+ IQDevs/Awesome-IQDevs
data/status/status.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Awesome Status
2
2
 
3
- Build status for **128** projects using https://github.com/dkhamsing/awesome_bot
3
+ Build status for **129** projects using https://github.com/dkhamsing/awesome_bot
4
4
 
5
5
  Status | Config | Repo
6
6
  --- | --- | ---
@@ -131,4 +131,7 @@ Status | Config | Repo
131
131
  [![Build Status](https://travis-ci.org/cdleon/awesome-front-end.svg)](https://travis-ci.org/cdleon/awesome-front-end) | [`config`](https://github.com/cdleon/awesome-front-end/blob/master/.travis.yml) | [cdleon/awesome-front-end](https://github.com/cdleon/awesome-front-end)
132
132
  [![Build Status](https://travis-ci.org/adriagalin/tools.svg)](https://travis-ci.org/adriagalin/tools) | [`config`](https://github.com/adriagalin/tools/blob/master/.travis.yml) | [adriagalin/tools](https://github.com/adriagalin/tools)
133
133
  [![Build Status](https://travis-ci.org/arthurwayne/awesome-pentester.svg)](https://travis-ci.org/arthurwayne/awesome-pentester) | [`config`](https://github.com/arthurwayne/awesome-pentester/blob/master/.travis.yml) | [arthurwayne/awesome-pentester](https://github.com/arthurwayne/awesome-pentester)
134
+ [![Build Status](https://travis-ci.org/alister/php-in-london.svg)](https://travis-ci.org/alister/php-in-london) | [`config`](https://github.com/alister/php-in-london/blob/master/.travis.yml) | [alister/php-in-london](https://github.com/alister/php-in-london)
134
135
  [![Circle CI](https://img.shields.io/circleci/project/tmcw/awesome-geojson.svg)](https://circleci.com/gh/tmcw/awesome-geojson) | [`config`](https://github.com/tmcw/awesome-geojson/blob/master/circle.yml) | [tmcw/awesome-geojson](https://github.com/tmcw/awesome-geojson)
136
+ [![Build Status](https://travis-ci.org/IQDevs/Awesome-IQDevs.svg?branch=master)](https://travis-ci.org/IQDevs/Awesome-IQDevs) |[`config`](https://github.com/IQDevs/Awesome-IQDevs/blob/master/.travis.yml) | [IQDevs/Awesome-IQDevs](https://github.com/IQDevs/Awesome-IQDevs)
137
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.1
4
+ version: 1.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Khamsing
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-08 00:00:00.000000000 Z
11
+ date: 2017-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.11.2
19
+ version: 1.12.0
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: 1.11.2
26
+ version: 1.12.0
27
27
  description: Check for valid and duplicate URLs in a file. Great for "awesome" projects.
28
28
  email:
29
29
  - dkhamsing8@gmail.com