awesome_bot 1.8.4 → 1.8.5

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: d5e4c2cc533a5b4728622c8732d6ea3a0aee1291
4
- data.tar.gz: d8e3b48cdec6c521fe64af865725dd2d3d2b0fc3
3
+ metadata.gz: f195dc3e6ffcad817c7d912b22f7bb8d8b8e947d
4
+ data.tar.gz: 291f0250d6f81cffa3b5361aed805c3646797886
5
5
  SHA512:
6
- metadata.gz: b3abefb5ada705ffe88e2c99f00db1e2e85e46ee9e1a28a12e5cc0a9100c19690ca9bda64dd661f22c7817408d732c37ba2dfe7ea2c5452a532a04fbcb71fc8a
7
- data.tar.gz: 1911a78c8928f842b3d3d58e61f8e08a8690e4de35157ecacb1feb7fc586c0c2f31216be6feb7a83d9bc638653fcd17635f2775b7845171bc83c984a4c6f128a
6
+ metadata.gz: 77e634ea2d1a908496765ef33335e95a11c34137049c5d4f4b1b946daefa728bf8dc9110e3a55c25aeaa9c7e2ebc3bf7b08824182ab23358998696ee139395f0
7
+ data.tar.gz: 39394dd0a2db5b3dd8225e74e51dc32d77f1f31bb0fa2e37bb43ad0c87b7cb9d65925aea6f16fd3d85826ebbede5f35a1810af6f21079ad4bbec9862f6910743
@@ -13,5 +13,6 @@ script:
13
13
  - awesome_bot bin/assets/test-timeout-and-redirect --allow-timeout --set-timeout 1 --allow-redirect
14
14
  - awesome_bot bin/assets/test-redirect --allow-redirect
15
15
  - awesome_bot bin/assets/test-statuses --white-list bot,bad,super
16
+ - awesome_bot bin/assets/test-errors
16
17
  - awesome_bot README.md --allow-dupe --white-list gph.is,giphy,travis-ci.org,codeload,badge,rubydoc,rubygems,circleci
17
18
  - gem install awesome_bot
@@ -2,6 +2,10 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+ # 1.8.5
6
+
7
+ - [fix] request errors (make `get` requests), reported by [Richard Littauer](https://github.com/RichardLitt)
8
+
5
9
  # 1.8.4
6
10
 
7
11
  - [fix] parsing links with colon
@@ -0,0 +1,12 @@
1
+ 2. [L046] 405 http://dancejs.io/
2
+ 3. [L056] 405 https://www.google.com/events/io
3
+ 5. [L130] 500 http://decentralizecamp.com/
4
+ 6. [L138] 405 https://emberfest.eu/
5
+ 02. [L0138] 401 https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/
6
+ 03. [L0145] 401 https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Introduction/Introduction.html
7
+ 04. [L0146] 401 https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/OOP_ObjC/Introduction/Introduction.html
8
+ 07. [L0644] 405 https://www.twilio.com/
9
+ 09. [L1374] 401 https://developer.apple.com/library/ios/documentation/DeveloperTools/Reference/UIAutomationRef/
10
+ 10. [L1446] 401 https://developer.apple.com/testflight/
11
+ 11. [L1453] 401 https://developer.apple.com/app-store/review/rejections/
12
+ 13. [L1587] 401 https://developer.apple.com/swift/blog/
@@ -3,7 +3,7 @@ module AwesomeBot
3
3
  STATUS_ERROR = -1
4
4
 
5
5
  class << self
6
- def net_status(url, timeout=30, head=true)
6
+ def net_status(url, timeout=30, head)
7
7
  require 'net/http'
8
8
  require 'openssl'
9
9
  require 'uri'
@@ -30,7 +30,7 @@ module AwesomeBot
30
30
  (status > 299) && (status < 400)
31
31
  end
32
32
 
33
- def statuses(links, threads, timeout, head=true)
33
+ def statuses(links, threads, timeout, head=false)
34
34
  require 'parallel'
35
35
 
36
36
  statuses = []
@@ -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.8.4'
8
+ VERSION = '1.8.5'
9
9
  end
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.8.4
4
+ version: 1.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Khamsing
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-10 00:00:00.000000000 Z
11
+ date: 2016-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -42,6 +42,7 @@ files:
42
42
  - awesome_bot.gemspec
43
43
  - bin/assets/test-bad-link
44
44
  - bin/assets/test-dupe
45
+ - bin/assets/test-errors
45
46
  - bin/assets/test-link-issue
46
47
  - bin/assets/test-no-dupes
47
48
  - bin/assets/test-no-issues