awesome_bot 1.17.0 → 1.17.1

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: 255832e4abbd834fbc4fb939c84c0eb3459a37ac
4
- data.tar.gz: ff5caaaff4e331e3dfe14df19b527406c888f9a0
3
+ metadata.gz: b3cf1c092e8b2268a453ae9322104d7cdb04eb45
4
+ data.tar.gz: 2c9e2b935aa0a6dcc4fe004a46f543e07facf6f5
5
5
  SHA512:
6
- metadata.gz: 9e8857e078f2d91934a4a1f51b405a6921b709ea0d98c6f49e3c2b7fb3cfe2356412b88d1a5bc080d049a489c54f6d5f9a24c49f584077bf6cded63a5e6123b6
7
- data.tar.gz: 2a18911e46290cf240ae5d0dcbea3c327c0eead29aa24690deb974034ce4d6ccbd8b9b3d45a8313eb165a758eb8079b32dbbfaf24c479e8998fb2881da5768cc
6
+ metadata.gz: 9f49bbe435557f0a0bf4cf5a02a90feca2590efc4ca94f3de3d1ff45a8696672e35e8288ee6ed21152abdef5b7e1407a60a6e9b9a30ddd5785297859fa3097c5
7
+ data.tar.gz: 841890e757726514ca372de064fd993a60eb5d7cc5180b52f5a7ef3b837edaaa63ff1fb3b15e5d74a7c6799af5c6357cbc9064c3e29ee1c9045e882cb1e73b55
@@ -7,6 +7,7 @@ script:
7
7
  - awesome_bot
8
8
  - awesome_bot bin/assets/test-no-issues
9
9
  - awesome_bot bin/assets/test-no-links
10
+ - awesome_bot bin/assets/test-embedded-link
10
11
  - awesome_bot bin/assets/test-parse --white-list coveralls,travis-ci
11
12
  - awesome_bot bin/assets/test-dupe --allow-dupe
12
13
  - awesome_bot bin/assets/test-timeout --allow-timeout --set-timeout 1
@@ -2,6 +2,11 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+
6
+ # 1.17.1
7
+
8
+ - [parse] fix Markdown link issue by [Richard Littauer](https://github.com/RichardLitt)
9
+
5
10
  # 1.17.0
6
11
 
7
12
  - support basic http authentication by [Bill O'Neill](https://github.com/woneill)
@@ -0,0 +1,3 @@
1
+ https://github.com ok
2
+ [times](https://www.nytimes.com/) ok
3
+ ([open source](https://en.wikipedia.org/wiki/Open-source_model)). ok
@@ -13,7 +13,7 @@ module AwesomeBot
13
13
  x.gsub(/\)\).*/, ')')
14
14
  elsif (x.scan(')').count > 0)
15
15
  if (x.include? 'wikipedia')
16
- if (x.scan(')').count == 1) && (x.scan('(').count == 0)
16
+ if (x.scan(')').count >= 1) && (x.scan('(').count == 0)
17
17
  x.gsub(/\).*/, '')
18
18
  else
19
19
  x
@@ -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.0'
8
+ VERSION = '1.17.1'
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.17.0
4
+ version: 1.17.1
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-06-12 00:00:00.000000000 Z
11
+ date: 2017-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -32,8 +32,8 @@ executables:
32
32
  extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
- - .gitignore
36
- - .travis.yml
35
+ - ".gitignore"
36
+ - ".travis.yml"
37
37
  - CHANGELOG.md
38
38
  - Gemfile
39
39
  - LICENSE
@@ -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-embedded-link
45
46
  - bin/assets/test-errors
46
47
  - bin/assets/test-invalid.md
47
48
  - bin/assets/test-link-issue
@@ -84,17 +85,17 @@ require_paths:
84
85
  - lib
85
86
  required_ruby_version: !ruby/object:Gem::Requirement
86
87
  requirements:
87
- - - '>='
88
+ - - ">="
88
89
  - !ruby/object:Gem::Version
89
90
  version: 2.0.0
90
91
  required_rubygems_version: !ruby/object:Gem::Requirement
91
92
  requirements:
92
- - - '>='
93
+ - - ">="
93
94
  - !ruby/object:Gem::Version
94
95
  version: '0'
95
96
  requirements: []
96
97
  rubyforge_project:
97
- rubygems_version: 2.0.14.1
98
+ rubygems_version: 2.6.8
98
99
  signing_key:
99
100
  specification_version: 4
100
101
  summary: Check for valid and duplicate URLs in a file. Great for "awesome" projects.