awesome_bot 1.7.1 → 1.8.0

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: d9dea3c3cefbfa0beafc29c0f899ed7f8c835a41
4
- data.tar.gz: 60c140fafec9ee86f9b851c4172705b4d6f2edb0
3
+ metadata.gz: 0b49b5fcbf456b3edd938ec1e75237c054cdaea7
4
+ data.tar.gz: e7cfb3e92f182a0fa20b354d55750870b57b7e1c
5
5
  SHA512:
6
- metadata.gz: 1a3933bcd653e7e585eb8f0a458db4ad0157409b08218b49422c4d8a1cd657bf5566c77f5f0aea05ba12a49e970f374afd8697b1a1e4a3fb5370711471193592
7
- data.tar.gz: a6f6975b587ae054658ebdff6ef2eafe4e2a60dc775ac860895fcf39707a6e726c3b7edfe750a7545444f9c6f70ecba1ecf739f1c901b58a39e67507a8bf03b9
6
+ metadata.gz: 0719b5d14fe5242ac1d388290b1654ebb8370124666a88e041f61b6c02a091b3266d7f719a9ac1c4df99a2b7ea5a4dbdfe2ae728a70c89996fd901c081a0b592
7
+ data.tar.gz: 15acf467a98ba48c6cb6124a4194c61c49d23ab468736222b72aaac86ca2d7b8581807bd1fd941fee50f120d64b5ea0658f0c1c72ff859099ca3a69ab0984d07
@@ -2,6 +2,11 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+ # 1.8.0
6
+
7
+ - remove `faraday`
8
+ - [fix] parse links with commas (url encode)
9
+
5
10
  # 1.7.1
6
11
 
7
12
  - [fix] parse issues with links in `adoc` files, reported by [Ibragimov Ruslan](https://github.com/IRus)
@@ -86,7 +91,6 @@ Changes by [Daniel Khamsing][] unless otherwise noted.
86
91
  ## Contact
87
92
 
88
93
  - [Daniel Khamsing][]
89
- - [twitter.com/dkhamsing](https://twitter.com/dkhamsing)
90
94
 
91
95
  [Daniel Khamsing]:https://github.com/dkhamsing
92
96
  [Colby M. White]:https://github.com/colbywhite
data/README.md CHANGED
@@ -36,7 +36,7 @@ More information at [rubydoc](http://www.rubydoc.info/gems/awesome_bot).
36
36
 
37
37
  awesome_bot <file> [--allow-dupe] [--allow-redirect] [--allow-timeout] [--set-timeout d] [--white-list item1,item2,..]
38
38
  file Path to file, required as first argument
39
- --allow-dupe Duplicate URLs are allowed
39
+ --allow-dupe Duplicate URLs are allowed
40
40
  --allow-redirect Redirected URLs are allowed
41
41
  --allow-timeout URLs that time out are allowed
42
42
  --set-timeout Set connection timeout (seconds)
@@ -45,7 +45,7 @@ More information at [rubydoc](http://www.rubydoc.info/gems/awesome_bot).
45
45
  By default, `awesome_bot` flags duplicates and URL redirects.
46
46
 
47
47
  - Use option `--allow-dupe` to allow duplicates.
48
- - Use option `--allow-redirect` to all redirects.
48
+ - Use option `--allow-redirect` to all redirects.
49
49
  - You can also white list specific links that will not be flagged (for dupe or redirect). `--white-list domain1.com/post/article,domain2.com` white lists `domain1.com/post/article` and all links matching `domain2.com`.
50
50
 
51
51
  ### Examples
@@ -98,7 +98,7 @@ No issues :-)
98
98
 
99
99
  ## Validate Pull Requests
100
100
 
101
- Does your GitHub README contain a lot of links? `awesome_bot` can help you validate them when a [pull request](https://github.com/dkhamsing/open-source-ios-apps/pull/159) is created. It is used by
101
+ Does your GitHub README contain a lot of links? `awesome_bot` can help you validate them when a [pull request](https://github.com/dkhamsing/open-source-ios-apps/pull/159) is created (or a commit is pushed). It is used by:
102
102
 
103
103
  - https://github.com/tiimgreen/github-cheat-sheet
104
104
  - https://github.com/vinta/awesome-python
@@ -109,6 +109,7 @@ Does your GitHub README contain a lot of links? `awesome_bot` can help you valid
109
109
 
110
110
  and [more](status/status.md).
111
111
 
112
+ Tip: Use the keyword `[ci skip]` in your commit title/message to selectively skip verification (if you are let's say working on a bunch of changes).
112
113
 
113
114
  ### Travis CI
114
115
 
@@ -143,6 +144,30 @@ test:
143
144
  - awesome_bot README.md
144
145
  ```
145
146
 
147
+ ### More
148
+
149
+ 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).
150
+
151
+ ```
152
+ # Codeship
153
+ Setup
154
+ rvm use 2.2.0 --install
155
+ gem install awesome_bot
156
+
157
+ Test
158
+ awesome_bot README.md
159
+ ```
160
+
161
+ ```
162
+ # Semaphore CI
163
+ Language: Ruby
164
+ Ruby version: 2.2
165
+ Databases for: don't generate
166
+ Setup:
167
+ gem install awesome_bot
168
+ awesome_bot README.md
169
+ ```
170
+
146
171
  ### Status Badge
147
172
 
148
173
  [![Build Status](https://travis-ci.org/unixorn/awesome-zsh-plugins.png)](https://travis-ci.org/unixorn/awesome-zsh-plugins)
@@ -162,21 +187,7 @@ As it happens, the default code snippet provided contain a redirect so adding a
162
187
  - awesome_bot README.md --white-list travis-ci
163
188
  ```
164
189
 
165
- [![Circle CI](https://circleci.com/gh/dkhamsing/awesome_bot.svg?style=svg)](https://circleci.com/gh/dkhamsing/awesome_bot)
166
-
167
- To add the Circle CI build status badge above to your project, use the following code
168
-
169
- ```
170
- [![Circle CI](https://circleci.com/gh/<username>/<project>.svg?style=svg)](https://circleci.com/gh/<username>/<project>)
171
-
172
- i.e.
173
- [![Circle CI](https://circleci.com/gh/dkhamsing/awesome_bot.svg?style=svg)](https://circleci.com/gh/dkhamsing/awesome_bot)
174
- ```
175
-
176
- ## Credits
177
-
178
- - [`faraday` and `parallel`](awesome_bot.gemspec)
179
- - [giphy](http://gph.is/XM6gMT)
190
+ You can also add a badge for other CI tools, I recommend checking out [shields.io](http://shields.io/).
180
191
 
181
192
  ## Contact
182
193
 
@@ -20,8 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ['lib']
21
21
 
22
22
  spec.required_ruby_version = '>= 2.0.0'
23
-
24
- spec.add_runtime_dependency 'faraday', '~> 0.9.2' # validate urls
23
+
25
24
  spec.add_runtime_dependency 'parallel', '~> 1.6.1' # threading
26
25
 
27
26
  spec.add_development_dependency 'rspec', '~> 3.4.0' # tests'
@@ -25,7 +25,17 @@ module AwesomeBot
25
25
  end
26
26
  end
27
27
 
28
- def check(content, white_listed = nil, skip_dupe = false, log = Log.new)
28
+ def check(content, options=nil, log = Log.new)
29
+ if options.nil?
30
+ white_listed = nil
31
+ skip_dupe = false
32
+ timeout = nil
33
+ else
34
+ white_listed = options['whitelist']
35
+ skip_dupe = options['allowdupe']
36
+ timeout = options['timeout']
37
+ end
38
+
29
39
  log.add '> Will allow duplicate links' if skip_dupe
30
40
 
31
41
  temp = links_filter(links_find(content))
@@ -46,7 +56,7 @@ module AwesomeBot
46
56
 
47
57
  log.addp 'Checking URLs: ' if r.links.count > 0
48
58
  r.status =
49
- statuses(r.links.uniq, NUMBER_OF_THREADS) do |s|
59
+ statuses(r.links.uniq, NUMBER_OF_THREADS, timeout) do |s|
50
60
  log_status s, log
51
61
  end
52
62
  log.add ''
@@ -55,7 +65,7 @@ module AwesomeBot
55
65
 
56
66
  log.addp 'Checking white listed URLs: '
57
67
  r.white_listed =
58
- statuses(r.links_white_listed.uniq, NUMBER_OF_THREADS, true) do |s|
68
+ statuses(r.links_white_listed.uniq, NUMBER_OF_THREADS, nil) do |s|
59
69
  log_status s, log
60
70
  end
61
71
  log.add ''
@@ -110,10 +110,16 @@ module AwesomeBot
110
110
  allow_timeouts = false
111
111
  end
112
112
 
113
- Faraday.options.timeout = timeout unless timeout.nil?
113
+ # Faraday.options.timeout = timeout unless timeout.nil?
114
114
 
115
115
  log = Log.new(true)
116
- r = check(content, white_listed, skip_dupe, log)
116
+
117
+ options = {
118
+ 'whitelist' => white_listed,
119
+ 'allowdupe' => skip_dupe,
120
+ 'timeout' => timeout
121
+ }
122
+ r = check(content, options, log)
117
123
 
118
124
  unless r.white_listed.nil?
119
125
  puts "\n> White listed:"
@@ -6,7 +6,7 @@ module AwesomeBot
6
6
  def links_filter(list)
7
7
  list.reject { |x| x.length < 9 }
8
8
  .map do |x|
9
- x.gsub(/'.*/, '').gsub(/,.*/, '').gsub('/:', '/')
9
+ x.gsub(',','%2c').gsub(/'.*/, '').gsub(/,.*/, '').gsub('/:', '/')
10
10
  end
11
11
  .map do |x|
12
12
  if x.include? ')]'
@@ -26,7 +26,7 @@ module AwesomeBot
26
26
  s = status.select { |x| x['status'] != 200 }
27
27
  r = s.reject { |x| AwesomeBot.status_is_redirected? x['status'] }
28
28
  t = s.reject do |x|
29
- (x['status'] == -1) && ((x['error'].message == 'Net::ReadTimeout') || (x['error'].message == 'execution expired'))
29
+ (x['status'] == STATUS_ERROR) && ((x['error'].message == 'Net::ReadTimeout') || (x['error'].message == 'execution expired'))
30
30
  end
31
31
 
32
32
  if (allow_redirects == false) && (allow_timeouts == false)
@@ -37,7 +37,7 @@ module AwesomeBot
37
37
  return t
38
38
  else
39
39
  return r.reject do |x|
40
- (x['status'] == -1) && ((x['error'].message == 'Net::ReadTimeout') || (x['error'].message == 'execution expired'))
40
+ (x['status'] == STATUS_ERROR) && ((x['error'].message == 'Net::ReadTimeout') || (x['error'].message == 'execution expired'))
41
41
  end
42
42
  end
43
43
  end
@@ -1,34 +1,37 @@
1
1
  # Get link status
2
2
  module AwesomeBot
3
- require 'faraday'
3
+ require 'net/http'
4
+ require 'openssl'
5
+ require 'uri'
6
+
4
7
  require 'parallel'
5
8
 
6
9
  STATUS_ERROR = -1
7
10
 
8
11
  class << self
9
- def net_head_status(url)
10
- Faraday.head(url)
11
- end
12
-
13
- def net_get_status(url)
14
- Faraday.get(url)
15
- end
16
-
17
- def net_status(url, head)
18
- head ? net_head_status(url) : net_get_status(url)
12
+ def net_status(url, head, timeout)
13
+ uri = URI.parse url
14
+ timeout = 60 if timeout.nil?
15
+ Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https', :open_timeout => timeout) do |http|
16
+ request = Net::HTTP::Get.new uri
17
+ response = http.request request
18
+ return response
19
+ end
19
20
  end
20
21
 
21
22
  def status_is_redirected?(status)
22
23
  (status > 299) && (status < 400)
23
24
  end
24
25
 
25
- def statuses(links, threads, head = false)
26
+ def statuses(links, threads, timeout, head=false)
26
27
  statuses = []
27
28
  Parallel.each(links, in_threads: threads) do |u|
28
29
  begin
29
- response = net_status u, head
30
- status = response.status
31
- headers = response.headers
30
+ response = net_status u, head, timeout
31
+ status = response.code.to_i
32
+ status = 200 if status.nil?
33
+ headers = {}
34
+ response.each { |k, v| headers[k] = v }
32
35
  error = nil # nil (success)
33
36
  rescue => e
34
37
  status = STATUS_ERROR
@@ -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.7.1'
8
+ VERSION = '1.8.0'
9
9
  end
@@ -1,14 +1,12 @@
1
1
  vinta/awesome-python
2
2
  tiimgreen/github-cheat-sheet
3
- caesar0301/awesome-public-datasets
4
3
  enaqx/awesome-react
5
4
  ziadoz/awesome-php
6
5
  vsouza/awesome-ios
7
6
  cjwirth/awesome-ios-ui
8
- herrbischoff/awesome-osx-command-line
9
7
  matteocrippa/awesome-swift
8
+ herrbischoff/awesome-osx-command-line
10
9
  alebcay/awesome-shell
11
- akullpp/awesome-java
12
10
  wsargent/docker-cheat-sheet
13
11
  neutraltone/awesome-stock-resources
14
12
  hangtwenty/dive-into-machine-learning
@@ -17,8 +15,8 @@ iCHAIT/awesome-osx
17
15
  rosarior/awesome-django
18
16
  n1trux/awesome-sysadmin
19
17
  pcqpcq/open-source-android-apps
20
- willianjusten/awesome-svg
21
18
  veggiemonk/awesome-docker
19
+ willianjusten/awesome-svg
22
20
  ellisonleao/magictools
23
21
  dhamaniasad/awesome-postgres
24
22
  JStumpp/awesome-android
@@ -26,31 +24,35 @@ humiaozuzu/awesome-flask
26
24
  dariubs/GoBooks
27
25
  unixorn/awesome-zsh-plugins
28
26
  arslanbilal/git-cheat-sheet
27
+ dahlia/awesome-sqlalchemy
29
28
  chentsulin/awesome-graphql
30
29
  webpro/awesome-dotfiles
30
+ ashishb/android-security-awesome
31
31
  rshipp/awesome-malware-analysis
32
- lerrua/remote-jobs-brazil
33
32
  mfornos/awesome-microservices
33
+ lerrua/remote-jobs-brazil
34
34
  sitepoint/awesome-symfony
35
35
  watson/awesome-computer-history
36
36
  wbinnssmith/awesome-promises
37
- dotfiles/dotfiles.github.com
38
37
  isRuslan/awesome-elm
38
+ dotfiles/dotfiles.github.com
39
39
  diegocard/awesome-html5
40
40
  stefanbuck/awesome-browser-extensions-for-github
41
41
  fasouto/awesome-dataviz
42
42
  RichardLitt/awesome-conferences
43
+ sotayamashita/awesome-css
43
44
  FriendsOfCake/awesome-cakephp
44
45
  uraimo/Awesome-Swift-Playgrounds
45
- matteofigus/awesome-speaking
46
- sotayamashita/awesome-css
47
46
  caesar0301/awesome-pcaptools
48
- najela/discount-for-student-dev
47
+ matteofigus/awesome-speaking
49
48
  matiassingers/awesome-readme
50
- burningtree/awesome-json
49
+ najela/discount-for-student-dev
51
50
  afonsopacifer/awesome-flexbox
52
- uralbash/awesome-pyramid
51
+ burningtree/awesome-json
52
+ JavaBy/awesome-kotlin
53
+ vredniy/awesome-newsletters
53
54
  vredniy/awesome-newsletters
55
+ uralbash/awesome-pyramid
54
56
  ahkscript/awesome-AutoHotkey
55
57
  HQarroum/awesome-iot
56
58
  aleksandar-todorovic/awesome-c
@@ -58,26 +60,26 @@ phillipadsmith/awesome-github
58
60
  iJackUA/awesome-vagrant
59
61
  sergeyklay/awesome-phalcon
60
62
  yenchenlin1994/awesome-watchos
61
- deanhume/typography
62
63
  ipfs/awesome-ipfs
63
64
  notthetup/awesome-webaudio
65
+ deanhume/typography
64
66
  MakinGiants/awesome-mobile-dev
65
67
  filipelinhares/awesome-slack
66
- brunopulis/awesome-a11y
67
68
  lnishan/awesome-competitive-programming
69
+ ramitsurana/awesome-kubernetes
70
+ brunopulis/awesome-a11y
68
71
  brabadu/awesome-fonts
69
- christian-bromann/awesome-selenium
70
72
  vinkla/awesome-fuse
73
+ christian-bromann/awesome-selenium
71
74
  unixorn/git-extra-commands
72
- ramitsurana/awesome-kubernetes
73
75
  mark-rushakoff/awesome-influxdb
76
+ benoitjadinon/awesome-xamarin
74
77
  RichardLitt/endangered-languages
75
78
  vkarampinis/awesome-icons
76
- benoitjadinon/awesome-xamarin
77
79
  Neueda4j/awesome-neo4j
78
80
  rabbiabram/awesome-fortran
79
- yangshun/awesome-spinners
80
81
  tedyoung/awesome-java8
82
+ yangshun/awesome-spinners
81
83
  wfhio/awesome-job-boards
82
84
  joubertredrat/awesome-devops
83
85
  ipfs/weekly
@@ -1,20 +1,18 @@
1
1
  # Awesome Status
2
2
 
3
- Build status for **86** projects using https://github.com/dkhamsing/awesome_bot
3
+ Build status for **89** projects using https://github.com/dkhamsing/awesome_bot
4
4
 
5
5
  Status | Config | Repo
6
6
  --- | --- | ---
7
7
  [![Build Status](https://travis-ci.org/vinta/awesome-python.svg)](https://travis-ci.org/vinta/awesome-python) | [`config`](https://github.com/vinta/awesome-python/blob/master/.travis.yml) | [vinta/awesome-python](https://github.com/vinta/awesome-python)
8
8
  [![Build Status](https://travis-ci.org/tiimgreen/github-cheat-sheet.svg)](https://travis-ci.org/tiimgreen/github-cheat-sheet) | [`config`](https://github.com/tiimgreen/github-cheat-sheet/blob/master/.travis.yml) | [tiimgreen/github-cheat-sheet](https://github.com/tiimgreen/github-cheat-sheet)
9
- [![Build Status](https://travis-ci.org/caesar0301/awesome-public-datasets.svg)](https://travis-ci.org/caesar0301/awesome-public-datasets) | [`config`](https://github.com/caesar0301/awesome-public-datasets/blob/master/.travis.yml) | [caesar0301/awesome-public-datasets](https://github.com/caesar0301/awesome-public-datasets)
10
9
  [![Build Status](https://travis-ci.org/enaqx/awesome-react.svg)](https://travis-ci.org/enaqx/awesome-react) | [`config`](https://github.com/enaqx/awesome-react/blob/master/.travis.yml) | [enaqx/awesome-react](https://github.com/enaqx/awesome-react)
11
10
  [![Build Status](https://travis-ci.org/ziadoz/awesome-php.svg)](https://travis-ci.org/ziadoz/awesome-php) | [`config`](https://github.com/ziadoz/awesome-php/blob/master/.travis.yml) | [ziadoz/awesome-php](https://github.com/ziadoz/awesome-php)
12
11
  [![Build Status](https://travis-ci.org/vsouza/awesome-ios.svg)](https://travis-ci.org/vsouza/awesome-ios) | [`config`](https://github.com/vsouza/awesome-ios/blob/master/.travis.yml) | [vsouza/awesome-ios](https://github.com/vsouza/awesome-ios)
13
12
  [![Build Status](https://travis-ci.org/cjwirth/awesome-ios-ui.svg)](https://travis-ci.org/cjwirth/awesome-ios-ui) | [`config`](https://github.com/cjwirth/awesome-ios-ui/blob/master/.travis.yml) | [cjwirth/awesome-ios-ui](https://github.com/cjwirth/awesome-ios-ui)
14
- [![Build Status](https://travis-ci.org/herrbischoff/awesome-osx-command-line.svg)](https://travis-ci.org/herrbischoff/awesome-osx-command-line) | [`config`](https://github.com/herrbischoff/awesome-osx-command-line/blob/master/.travis.yml) | [herrbischoff/awesome-osx-command-line](https://github.com/herrbischoff/awesome-osx-command-line)
15
13
  [![Build Status](https://travis-ci.org/matteocrippa/awesome-swift.svg)](https://travis-ci.org/matteocrippa/awesome-swift) | [`config`](https://github.com/matteocrippa/awesome-swift/blob/master/.travis.yml) | [matteocrippa/awesome-swift](https://github.com/matteocrippa/awesome-swift)
14
+ [![Build Status](https://travis-ci.org/herrbischoff/awesome-osx-command-line.svg)](https://travis-ci.org/herrbischoff/awesome-osx-command-line) | [`config`](https://github.com/herrbischoff/awesome-osx-command-line/blob/master/.travis.yml) | [herrbischoff/awesome-osx-command-line](https://github.com/herrbischoff/awesome-osx-command-line)
16
15
  [![Build Status](https://travis-ci.org/alebcay/awesome-shell.svg)](https://travis-ci.org/alebcay/awesome-shell) | [`config`](https://github.com/alebcay/awesome-shell/blob/master/.travis.yml) | [alebcay/awesome-shell](https://github.com/alebcay/awesome-shell)
17
- [![Build Status](https://travis-ci.org/akullpp/awesome-java.svg)](https://travis-ci.org/akullpp/awesome-java) | [`config`](https://github.com/akullpp/awesome-java/blob/master/.travis.yml) | [akullpp/awesome-java](https://github.com/akullpp/awesome-java)
18
16
  [![Build Status](https://travis-ci.org/wsargent/docker-cheat-sheet.svg)](https://travis-ci.org/wsargent/docker-cheat-sheet) | [`config`](https://github.com/wsargent/docker-cheat-sheet/blob/master/.travis.yml) | [wsargent/docker-cheat-sheet](https://github.com/wsargent/docker-cheat-sheet)
19
17
  [![Build Status](https://travis-ci.org/neutraltone/awesome-stock-resources.svg)](https://travis-ci.org/neutraltone/awesome-stock-resources) | [`config`](https://github.com/neutraltone/awesome-stock-resources/blob/master/.travis.yml) | [neutraltone/awesome-stock-resources](https://github.com/neutraltone/awesome-stock-resources)
20
18
  [![Build Status](https://travis-ci.org/hangtwenty/dive-into-machine-learning.svg)](https://travis-ci.org/hangtwenty/dive-into-machine-learning) | [`config`](https://github.com/hangtwenty/dive-into-machine-learning/blob/master/.travis.yml) | [hangtwenty/dive-into-machine-learning](https://github.com/hangtwenty/dive-into-machine-learning)
@@ -23,8 +21,8 @@ Status | Config | Repo
23
21
  [![Build Status](https://travis-ci.org/rosarior/awesome-django.svg)](https://travis-ci.org/rosarior/awesome-django) | [`config`](https://github.com/rosarior/awesome-django/blob/master/.travis.yml) | [rosarior/awesome-django](https://github.com/rosarior/awesome-django)
24
22
  [![Build Status](https://travis-ci.org/n1trux/awesome-sysadmin.svg)](https://travis-ci.org/n1trux/awesome-sysadmin) | [`config`](https://github.com/n1trux/awesome-sysadmin/blob/master/.travis.yml) | [n1trux/awesome-sysadmin](https://github.com/n1trux/awesome-sysadmin)
25
23
  [![Build Status](https://travis-ci.org/pcqpcq/open-source-android-apps.svg)](https://travis-ci.org/pcqpcq/open-source-android-apps) | [`config`](https://github.com/pcqpcq/open-source-android-apps/blob/master/.travis.yml) | [pcqpcq/open-source-android-apps](https://github.com/pcqpcq/open-source-android-apps)
26
- [![Build Status](https://travis-ci.org/willianjusten/awesome-svg.svg)](https://travis-ci.org/willianjusten/awesome-svg) | [`config`](https://github.com/willianjusten/awesome-svg/blob/master/.travis.yml) | [willianjusten/awesome-svg](https://github.com/willianjusten/awesome-svg)
27
24
  [![Build Status](https://travis-ci.org/veggiemonk/awesome-docker.svg)](https://travis-ci.org/veggiemonk/awesome-docker) | [`config`](https://github.com/veggiemonk/awesome-docker/blob/master/.travis.yml) | [veggiemonk/awesome-docker](https://github.com/veggiemonk/awesome-docker)
25
+ [![Build Status](https://travis-ci.org/willianjusten/awesome-svg.svg)](https://travis-ci.org/willianjusten/awesome-svg) | [`config`](https://github.com/willianjusten/awesome-svg/blob/master/.travis.yml) | [willianjusten/awesome-svg](https://github.com/willianjusten/awesome-svg)
28
26
  [![Build Status](https://travis-ci.org/ellisonleao/magictools.svg)](https://travis-ci.org/ellisonleao/magictools) | [`config`](https://github.com/ellisonleao/magictools/blob/master/.travis.yml) | [ellisonleao/magictools](https://github.com/ellisonleao/magictools)
29
27
  [![Build Status](https://travis-ci.org/dhamaniasad/awesome-postgres.svg)](https://travis-ci.org/dhamaniasad/awesome-postgres) | [`config`](https://github.com/dhamaniasad/awesome-postgres/blob/master/.travis.yml) | [dhamaniasad/awesome-postgres](https://github.com/dhamaniasad/awesome-postgres)
30
28
  [![Build Status](https://travis-ci.org/JStumpp/awesome-android.svg)](https://travis-ci.org/JStumpp/awesome-android) | [`config`](https://github.com/JStumpp/awesome-android/blob/master/.travis.yml) | [JStumpp/awesome-android](https://github.com/JStumpp/awesome-android)
@@ -32,31 +30,35 @@ Status | Config | Repo
32
30
  [![Build Status](https://travis-ci.org/dariubs/GoBooks.svg)](https://travis-ci.org/dariubs/GoBooks) | [`config`](https://github.com/dariubs/GoBooks/blob/master/.travis.yml) | [dariubs/GoBooks](https://github.com/dariubs/GoBooks)
33
31
  [![Build Status](https://travis-ci.org/unixorn/awesome-zsh-plugins.svg)](https://travis-ci.org/unixorn/awesome-zsh-plugins) | [`config`](https://github.com/unixorn/awesome-zsh-plugins/blob/master/.travis.yml) | [unixorn/awesome-zsh-plugins](https://github.com/unixorn/awesome-zsh-plugins)
34
32
  [![Build Status](https://travis-ci.org/arslanbilal/git-cheat-sheet.svg)](https://travis-ci.org/arslanbilal/git-cheat-sheet) | [`config`](https://github.com/arslanbilal/git-cheat-sheet/blob/master/.travis.yml) | [arslanbilal/git-cheat-sheet](https://github.com/arslanbilal/git-cheat-sheet)
33
+ [![Build Status](https://travis-ci.org/dahlia/awesome-sqlalchemy.svg)](https://travis-ci.org/dahlia/awesome-sqlalchemy) | [`config`](https://github.com/dahlia/awesome-sqlalchemy/blob/master/.travis.yml) | [dahlia/awesome-sqlalchemy](https://github.com/dahlia/awesome-sqlalchemy)
35
34
  [![Build Status](https://travis-ci.org/chentsulin/awesome-graphql.svg)](https://travis-ci.org/chentsulin/awesome-graphql) | [`config`](https://github.com/chentsulin/awesome-graphql/blob/master/.travis.yml) | [chentsulin/awesome-graphql](https://github.com/chentsulin/awesome-graphql)
36
35
  [![Build Status](https://travis-ci.org/webpro/awesome-dotfiles.svg)](https://travis-ci.org/webpro/awesome-dotfiles) | [`config`](https://github.com/webpro/awesome-dotfiles/blob/master/.travis.yml) | [webpro/awesome-dotfiles](https://github.com/webpro/awesome-dotfiles)
36
+ [![Build Status](https://travis-ci.org/ashishb/android-security-awesome.svg)](https://travis-ci.org/ashishb/android-security-awesome) | [`config`](https://github.com/ashishb/android-security-awesome/blob/master/.travis.yml) | [ashishb/android-security-awesome](https://github.com/ashishb/android-security-awesome)
37
37
  [![Build Status](https://travis-ci.org/rshipp/awesome-malware-analysis.svg)](https://travis-ci.org/rshipp/awesome-malware-analysis) | [`config`](https://github.com/rshipp/awesome-malware-analysis/blob/master/.travis.yml) | [rshipp/awesome-malware-analysis](https://github.com/rshipp/awesome-malware-analysis)
38
- [![Build Status](https://travis-ci.org/lerrua/remote-jobs-brazil.svg)](https://travis-ci.org/lerrua/remote-jobs-brazil) | [`config`](https://github.com/lerrua/remote-jobs-brazil/blob/master/.travis.yml) | [lerrua/remote-jobs-brazil](https://github.com/lerrua/remote-jobs-brazil)
39
38
  [![Build Status](https://travis-ci.org/mfornos/awesome-microservices.svg)](https://travis-ci.org/mfornos/awesome-microservices) | [`config`](https://github.com/mfornos/awesome-microservices/blob/master/.travis.yml) | [mfornos/awesome-microservices](https://github.com/mfornos/awesome-microservices)
39
+ [![Build Status](https://travis-ci.org/lerrua/remote-jobs-brazil.svg)](https://travis-ci.org/lerrua/remote-jobs-brazil) | [`config`](https://github.com/lerrua/remote-jobs-brazil/blob/master/.travis.yml) | [lerrua/remote-jobs-brazil](https://github.com/lerrua/remote-jobs-brazil)
40
40
  [![Build Status](https://travis-ci.org/sitepoint/awesome-symfony.svg)](https://travis-ci.org/sitepoint/awesome-symfony) | [`config`](https://github.com/sitepoint/awesome-symfony/blob/master/.travis.yml) | [sitepoint/awesome-symfony](https://github.com/sitepoint/awesome-symfony)
41
41
  [![Build Status](https://travis-ci.org/watson/awesome-computer-history.svg)](https://travis-ci.org/watson/awesome-computer-history) | [`config`](https://github.com/watson/awesome-computer-history/blob/master/.travis.yml) | [watson/awesome-computer-history](https://github.com/watson/awesome-computer-history)
42
42
  [![Build Status](https://travis-ci.org/wbinnssmith/awesome-promises.svg)](https://travis-ci.org/wbinnssmith/awesome-promises) | [`config`](https://github.com/wbinnssmith/awesome-promises/blob/master/.travis.yml) | [wbinnssmith/awesome-promises](https://github.com/wbinnssmith/awesome-promises)
43
- [![Build Status](https://travis-ci.org/dotfiles/dotfiles.github.com.svg)](https://travis-ci.org/dotfiles/dotfiles.github.com) | [`config`](https://github.com/dotfiles/dotfiles.github.com/blob/master/.travis.yml) | [dotfiles/dotfiles.github.com](https://github.com/dotfiles/dotfiles.github.com)
44
43
  [![Build Status](https://travis-ci.org/isRuslan/awesome-elm.svg)](https://travis-ci.org/isRuslan/awesome-elm) | [`config`](https://github.com/isRuslan/awesome-elm/blob/master/.travis.yml) | [isRuslan/awesome-elm](https://github.com/isRuslan/awesome-elm)
44
+ [![Build Status](https://travis-ci.org/dotfiles/dotfiles.github.com.svg)](https://travis-ci.org/dotfiles/dotfiles.github.com) | [`config`](https://github.com/dotfiles/dotfiles.github.com/blob/master/.travis.yml) | [dotfiles/dotfiles.github.com](https://github.com/dotfiles/dotfiles.github.com)
45
45
  [![Build Status](https://travis-ci.org/diegocard/awesome-html5.svg)](https://travis-ci.org/diegocard/awesome-html5) | [`config`](https://github.com/diegocard/awesome-html5/blob/master/.travis.yml) | [diegocard/awesome-html5](https://github.com/diegocard/awesome-html5)
46
46
  [![Build Status](https://travis-ci.org/stefanbuck/awesome-browser-extensions-for-github.svg)](https://travis-ci.org/stefanbuck/awesome-browser-extensions-for-github) | [`config`](https://github.com/stefanbuck/awesome-browser-extensions-for-github/blob/master/.travis.yml) | [stefanbuck/awesome-browser-extensions-for-github](https://github.com/stefanbuck/awesome-browser-extensions-for-github)
47
47
  [![Build Status](https://travis-ci.org/fasouto/awesome-dataviz.svg)](https://travis-ci.org/fasouto/awesome-dataviz) | [`config`](https://github.com/fasouto/awesome-dataviz/blob/master/.travis.yml) | [fasouto/awesome-dataviz](https://github.com/fasouto/awesome-dataviz)
48
48
  [![Build Status](https://travis-ci.org/RichardLitt/awesome-conferences.svg)](https://travis-ci.org/RichardLitt/awesome-conferences) | [`config`](https://github.com/RichardLitt/awesome-conferences/blob/master/.travis.yml) | [RichardLitt/awesome-conferences](https://github.com/RichardLitt/awesome-conferences)
49
+ [![Build Status](https://travis-ci.org/sotayamashita/awesome-css.svg)](https://travis-ci.org/sotayamashita/awesome-css) | [`config`](https://github.com/sotayamashita/awesome-css/blob/master/.travis.yml) | [sotayamashita/awesome-css](https://github.com/sotayamashita/awesome-css)
49
50
  [![Build Status](https://travis-ci.org/FriendsOfCake/awesome-cakephp.svg)](https://travis-ci.org/FriendsOfCake/awesome-cakephp) | [`config`](https://github.com/FriendsOfCake/awesome-cakephp/blob/master/.travis.yml) | [FriendsOfCake/awesome-cakephp](https://github.com/FriendsOfCake/awesome-cakephp)
50
51
  [![Build Status](https://travis-ci.org/uraimo/Awesome-Swift-Playgrounds.svg)](https://travis-ci.org/uraimo/Awesome-Swift-Playgrounds) | [`config`](https://github.com/uraimo/Awesome-Swift-Playgrounds/blob/master/.travis.yml) | [uraimo/Awesome-Swift-Playgrounds](https://github.com/uraimo/Awesome-Swift-Playgrounds)
51
- [![Build Status](https://travis-ci.org/matteofigus/awesome-speaking.svg)](https://travis-ci.org/matteofigus/awesome-speaking) | [`config`](https://github.com/matteofigus/awesome-speaking/blob/master/.travis.yml) | [matteofigus/awesome-speaking](https://github.com/matteofigus/awesome-speaking)
52
- [![Build Status](https://travis-ci.org/sotayamashita/awesome-css.svg)](https://travis-ci.org/sotayamashita/awesome-css) | [`config`](https://github.com/sotayamashita/awesome-css/blob/master/.travis.yml) | [sotayamashita/awesome-css](https://github.com/sotayamashita/awesome-css)
53
52
  [![Build Status](https://travis-ci.org/caesar0301/awesome-pcaptools.svg)](https://travis-ci.org/caesar0301/awesome-pcaptools) | [`config`](https://github.com/caesar0301/awesome-pcaptools/blob/master/.travis.yml) | [caesar0301/awesome-pcaptools](https://github.com/caesar0301/awesome-pcaptools)
54
- [![Build Status](https://travis-ci.org/najela/discount-for-student-dev.svg)](https://travis-ci.org/najela/discount-for-student-dev) | [`config`](https://github.com/najela/discount-for-student-dev/blob/master/.travis.yml) | [najela/discount-for-student-dev](https://github.com/najela/discount-for-student-dev)
53
+ [![Build Status](https://travis-ci.org/matteofigus/awesome-speaking.svg)](https://travis-ci.org/matteofigus/awesome-speaking) | [`config`](https://github.com/matteofigus/awesome-speaking/blob/master/.travis.yml) | [matteofigus/awesome-speaking](https://github.com/matteofigus/awesome-speaking)
55
54
  [![Build Status](https://travis-ci.org/matiassingers/awesome-readme.svg)](https://travis-ci.org/matiassingers/awesome-readme) | [`config`](https://github.com/matiassingers/awesome-readme/blob/master/.travis.yml) | [matiassingers/awesome-readme](https://github.com/matiassingers/awesome-readme)
56
- [![Build Status](https://travis-ci.org/burningtree/awesome-json.svg)](https://travis-ci.org/burningtree/awesome-json) | [`config`](https://github.com/burningtree/awesome-json/blob/master/.travis.yml) | [burningtree/awesome-json](https://github.com/burningtree/awesome-json)
55
+ [![Build Status](https://travis-ci.org/najela/discount-for-student-dev.svg)](https://travis-ci.org/najela/discount-for-student-dev) | [`config`](https://github.com/najela/discount-for-student-dev/blob/master/.travis.yml) | [najela/discount-for-student-dev](https://github.com/najela/discount-for-student-dev)
57
56
  [![Build Status](https://travis-ci.org/afonsopacifer/awesome-flexbox.svg)](https://travis-ci.org/afonsopacifer/awesome-flexbox) | [`config`](https://github.com/afonsopacifer/awesome-flexbox/blob/master/.travis.yml) | [afonsopacifer/awesome-flexbox](https://github.com/afonsopacifer/awesome-flexbox)
58
- [![Build Status](https://travis-ci.org/uralbash/awesome-pyramid.svg)](https://travis-ci.org/uralbash/awesome-pyramid) | [`config`](https://github.com/uralbash/awesome-pyramid/blob/master/.travis.yml) | [uralbash/awesome-pyramid](https://github.com/uralbash/awesome-pyramid)
57
+ [![Build Status](https://travis-ci.org/burningtree/awesome-json.svg)](https://travis-ci.org/burningtree/awesome-json) | [`config`](https://github.com/burningtree/awesome-json/blob/master/.travis.yml) | [burningtree/awesome-json](https://github.com/burningtree/awesome-json)
58
+ [![Build Status](https://travis-ci.org/JavaBy/awesome-kotlin.svg)](https://travis-ci.org/JavaBy/awesome-kotlin) | [`config`](https://github.com/JavaBy/awesome-kotlin/blob/master/.travis.yml) | [JavaBy/awesome-kotlin](https://github.com/JavaBy/awesome-kotlin)
59
+ [![Build Status](https://travis-ci.org/vredniy/awesome-newsletters.svg)](https://travis-ci.org/vredniy/awesome-newsletters) | [`config`](https://github.com/vredniy/awesome-newsletters/blob/master/.travis.yml) | [vredniy/awesome-newsletters](https://github.com/vredniy/awesome-newsletters)
59
60
  [![Build Status](https://travis-ci.org/vredniy/awesome-newsletters.svg)](https://travis-ci.org/vredniy/awesome-newsletters) | [`config`](https://github.com/vredniy/awesome-newsletters/blob/master/.travis.yml) | [vredniy/awesome-newsletters](https://github.com/vredniy/awesome-newsletters)
61
+ [![Build Status](https://travis-ci.org/uralbash/awesome-pyramid.svg)](https://travis-ci.org/uralbash/awesome-pyramid) | [`config`](https://github.com/uralbash/awesome-pyramid/blob/master/.travis.yml) | [uralbash/awesome-pyramid](https://github.com/uralbash/awesome-pyramid)
60
62
  [![Build Status](https://travis-ci.org/ahkscript/awesome-AutoHotkey.svg)](https://travis-ci.org/ahkscript/awesome-AutoHotkey) | [`config`](https://github.com/ahkscript/awesome-AutoHotkey/blob/master/.travis.yml) | [ahkscript/awesome-AutoHotkey](https://github.com/ahkscript/awesome-AutoHotkey)
61
63
  [![Build Status](https://travis-ci.org/HQarroum/awesome-iot.svg)](https://travis-ci.org/HQarroum/awesome-iot) | [`config`](https://github.com/HQarroum/awesome-iot/blob/master/.travis.yml) | [HQarroum/awesome-iot](https://github.com/HQarroum/awesome-iot)
62
64
  [![Build Status](https://travis-ci.org/aleksandar-todorovic/awesome-c.svg)](https://travis-ci.org/aleksandar-todorovic/awesome-c) | [`config`](https://github.com/aleksandar-todorovic/awesome-c/blob/master/.travis.yml) | [aleksandar-todorovic/awesome-c](https://github.com/aleksandar-todorovic/awesome-c)
@@ -64,29 +66,30 @@ Status | Config | Repo
64
66
  [![Build Status](https://travis-ci.org/iJackUA/awesome-vagrant.svg)](https://travis-ci.org/iJackUA/awesome-vagrant) | [`config`](https://github.com/iJackUA/awesome-vagrant/blob/master/.travis.yml) | [iJackUA/awesome-vagrant](https://github.com/iJackUA/awesome-vagrant)
65
67
  [![Build Status](https://travis-ci.org/sergeyklay/awesome-phalcon.svg)](https://travis-ci.org/sergeyklay/awesome-phalcon) | [`config`](https://github.com/sergeyklay/awesome-phalcon/blob/master/.travis.yml) | [sergeyklay/awesome-phalcon](https://github.com/sergeyklay/awesome-phalcon)
66
68
  [![Build Status](https://travis-ci.org/yenchenlin1994/awesome-watchos.svg)](https://travis-ci.org/yenchenlin1994/awesome-watchos) | [`config`](https://github.com/yenchenlin1994/awesome-watchos/blob/master/.travis.yml) | [yenchenlin1994/awesome-watchos](https://github.com/yenchenlin1994/awesome-watchos)
67
- [![Build Status](https://travis-ci.org/deanhume/typography.svg)](https://travis-ci.org/deanhume/typography) | [`config`](https://github.com/deanhume/typography/blob/master/.travis.yml) | [deanhume/typography](https://github.com/deanhume/typography)
68
69
  [![Build Status](https://travis-ci.org/ipfs/awesome-ipfs.svg)](https://travis-ci.org/ipfs/awesome-ipfs) | [`config`](https://github.com/ipfs/awesome-ipfs/blob/master/.travis.yml) | [ipfs/awesome-ipfs](https://github.com/ipfs/awesome-ipfs)
69
70
  [![Build Status](https://travis-ci.org/notthetup/awesome-webaudio.svg)](https://travis-ci.org/notthetup/awesome-webaudio) | [`config`](https://github.com/notthetup/awesome-webaudio/blob/master/.travis.yml) | [notthetup/awesome-webaudio](https://github.com/notthetup/awesome-webaudio)
71
+ [![Build Status](https://travis-ci.org/deanhume/typography.svg)](https://travis-ci.org/deanhume/typography) | [`config`](https://github.com/deanhume/typography/blob/master/.travis.yml) | [deanhume/typography](https://github.com/deanhume/typography)
70
72
  [![Build Status](https://travis-ci.org/MakinGiants/awesome-mobile-dev.svg)](https://travis-ci.org/MakinGiants/awesome-mobile-dev) | [`config`](https://github.com/MakinGiants/awesome-mobile-dev/blob/master/.travis.yml) | [MakinGiants/awesome-mobile-dev](https://github.com/MakinGiants/awesome-mobile-dev)
71
73
  [![Build Status](https://travis-ci.org/filipelinhares/awesome-slack.svg)](https://travis-ci.org/filipelinhares/awesome-slack) | [`config`](https://github.com/filipelinhares/awesome-slack/blob/master/.travis.yml) | [filipelinhares/awesome-slack](https://github.com/filipelinhares/awesome-slack)
72
- [![Build Status](https://travis-ci.org/brunopulis/awesome-a11y.svg)](https://travis-ci.org/brunopulis/awesome-a11y) | [`config`](https://github.com/brunopulis/awesome-a11y/blob/master/.travis.yml) | [brunopulis/awesome-a11y](https://github.com/brunopulis/awesome-a11y)
73
74
  [![Build Status](https://travis-ci.org/lnishan/awesome-competitive-programming.svg)](https://travis-ci.org/lnishan/awesome-competitive-programming) | [`config`](https://github.com/lnishan/awesome-competitive-programming/blob/master/.travis.yml) | [lnishan/awesome-competitive-programming](https://github.com/lnishan/awesome-competitive-programming)
75
+ [![Build Status](https://travis-ci.org/ramitsurana/awesome-kubernetes.svg)](https://travis-ci.org/ramitsurana/awesome-kubernetes) | [`config`](https://github.com/ramitsurana/awesome-kubernetes/blob/master/.travis.yml) | [ramitsurana/awesome-kubernetes](https://github.com/ramitsurana/awesome-kubernetes)
76
+ [![Build Status](https://travis-ci.org/brunopulis/awesome-a11y.svg)](https://travis-ci.org/brunopulis/awesome-a11y) | [`config`](https://github.com/brunopulis/awesome-a11y/blob/master/.travis.yml) | [brunopulis/awesome-a11y](https://github.com/brunopulis/awesome-a11y)
74
77
  [![Build Status](https://travis-ci.org/brabadu/awesome-fonts.svg)](https://travis-ci.org/brabadu/awesome-fonts) | [`config`](https://github.com/brabadu/awesome-fonts/blob/master/.travis.yml) | [brabadu/awesome-fonts](https://github.com/brabadu/awesome-fonts)
75
- [![Build Status](https://travis-ci.org/christian-bromann/awesome-selenium.svg)](https://travis-ci.org/christian-bromann/awesome-selenium) | [`config`](https://github.com/christian-bromann/awesome-selenium/blob/master/.travis.yml) | [christian-bromann/awesome-selenium](https://github.com/christian-bromann/awesome-selenium)
76
78
  [![Build Status](https://travis-ci.org/vinkla/awesome-fuse.svg)](https://travis-ci.org/vinkla/awesome-fuse) | [`config`](https://github.com/vinkla/awesome-fuse/blob/master/.travis.yml) | [vinkla/awesome-fuse](https://github.com/vinkla/awesome-fuse)
79
+ [![Build Status](https://travis-ci.org/christian-bromann/awesome-selenium.svg)](https://travis-ci.org/christian-bromann/awesome-selenium) | [`config`](https://github.com/christian-bromann/awesome-selenium/blob/master/.travis.yml) | [christian-bromann/awesome-selenium](https://github.com/christian-bromann/awesome-selenium)
77
80
  [![Build Status](https://travis-ci.org/unixorn/git-extra-commands.svg)](https://travis-ci.org/unixorn/git-extra-commands) | [`config`](https://github.com/unixorn/git-extra-commands/blob/master/.travis.yml) | [unixorn/git-extra-commands](https://github.com/unixorn/git-extra-commands)
78
- [![Build Status](https://travis-ci.org/ramitsurana/awesome-kubernetes.svg)](https://travis-ci.org/ramitsurana/awesome-kubernetes) | [`config`](https://github.com/ramitsurana/awesome-kubernetes/blob/master/.travis.yml) | [ramitsurana/awesome-kubernetes](https://github.com/ramitsurana/awesome-kubernetes)
79
81
  [![Build Status](https://travis-ci.org/mark-rushakoff/awesome-influxdb.svg)](https://travis-ci.org/mark-rushakoff/awesome-influxdb) | [`config`](https://github.com/mark-rushakoff/awesome-influxdb/blob/master/.travis.yml) | [mark-rushakoff/awesome-influxdb](https://github.com/mark-rushakoff/awesome-influxdb)
82
+ [![Build Status](https://travis-ci.org/benoitjadinon/awesome-xamarin.svg)](https://travis-ci.org/benoitjadinon/awesome-xamarin) | [`config`](https://github.com/benoitjadinon/awesome-xamarin/blob/master/.travis.yml) | [benoitjadinon/awesome-xamarin](https://github.com/benoitjadinon/awesome-xamarin)
80
83
  [![Build Status](https://travis-ci.org/RichardLitt/endangered-languages.svg)](https://travis-ci.org/RichardLitt/endangered-languages) | [`config`](https://github.com/RichardLitt/endangered-languages/blob/master/.travis.yml) | [RichardLitt/endangered-languages](https://github.com/RichardLitt/endangered-languages)
81
84
  [![Build Status](https://travis-ci.org/vkarampinis/awesome-icons.svg)](https://travis-ci.org/vkarampinis/awesome-icons) | [`config`](https://github.com/vkarampinis/awesome-icons/blob/master/.travis.yml) | [vkarampinis/awesome-icons](https://github.com/vkarampinis/awesome-icons)
82
- [![Build Status](https://travis-ci.org/benoitjadinon/awesome-xamarin.svg)](https://travis-ci.org/benoitjadinon/awesome-xamarin) | [`config`](https://github.com/benoitjadinon/awesome-xamarin/blob/master/.travis.yml) | [benoitjadinon/awesome-xamarin](https://github.com/benoitjadinon/awesome-xamarin)
83
85
  [![Build Status](https://travis-ci.org/Neueda4j/awesome-neo4j.svg)](https://travis-ci.org/Neueda4j/awesome-neo4j) | [`config`](https://github.com/Neueda4j/awesome-neo4j/blob/master/.travis.yml) | [Neueda4j/awesome-neo4j](https://github.com/Neueda4j/awesome-neo4j)
84
86
  [![Build Status](https://travis-ci.org/rabbiabram/awesome-fortran.svg)](https://travis-ci.org/rabbiabram/awesome-fortran) | [`config`](https://github.com/rabbiabram/awesome-fortran/blob/master/.travis.yml) | [rabbiabram/awesome-fortran](https://github.com/rabbiabram/awesome-fortran)
85
- [![Build Status](https://travis-ci.org/yangshun/awesome-spinners.svg)](https://travis-ci.org/yangshun/awesome-spinners) | [`config`](https://github.com/yangshun/awesome-spinners/blob/master/.travis.yml) | [yangshun/awesome-spinners](https://github.com/yangshun/awesome-spinners)
86
87
  [![Build Status](https://travis-ci.org/tedyoung/awesome-java8.svg)](https://travis-ci.org/tedyoung/awesome-java8) | [`config`](https://github.com/tedyoung/awesome-java8/blob/master/.travis.yml) | [tedyoung/awesome-java8](https://github.com/tedyoung/awesome-java8)
88
+ [![Build Status](https://travis-ci.org/yangshun/awesome-spinners.svg)](https://travis-ci.org/yangshun/awesome-spinners) | [`config`](https://github.com/yangshun/awesome-spinners/blob/master/.travis.yml) | [yangshun/awesome-spinners](https://github.com/yangshun/awesome-spinners)
87
89
  [![Build Status](https://travis-ci.org/wfhio/awesome-job-boards.svg)](https://travis-ci.org/wfhio/awesome-job-boards) | [`config`](https://github.com/wfhio/awesome-job-boards/blob/master/.travis.yml) | [wfhio/awesome-job-boards](https://github.com/wfhio/awesome-job-boards)
88
90
  [![Build Status](https://travis-ci.org/joubertredrat/awesome-devops.svg)](https://travis-ci.org/joubertredrat/awesome-devops) | [`config`](https://github.com/joubertredrat/awesome-devops/blob/master/.travis.yml) | [joubertredrat/awesome-devops](https://github.com/joubertredrat/awesome-devops)
89
91
  [![Build Status](https://travis-ci.org/ipfs/weekly.svg)](https://travis-ci.org/ipfs/weekly) | [`config`](https://github.com/ipfs/weekly/blob/master/.travis.yml) | [ipfs/weekly](https://github.com/ipfs/weekly)
90
92
  [![Build Status](https://travis-ci.org/stve/awesome-dropwizard.svg)](https://travis-ci.org/stve/awesome-dropwizard) | [`config`](https://github.com/stve/awesome-dropwizard/blob/master/.travis.yml) | [stve/awesome-dropwizard](https://github.com/stve/awesome-dropwizard)
91
93
  [![Build Status](https://travis-ci.org/ramitsurana/awesome-openstack.svg)](https://travis-ci.org/ramitsurana/awesome-openstack) | [`config`](https://github.com/ramitsurana/awesome-openstack/blob/master/.travis.yml) | [ramitsurana/awesome-openstack](https://github.com/ramitsurana/awesome-openstack)
92
94
  [![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)
95
+ [![Build Status](https://travis-ci.org/fisherman/awesome-fish.svg?branch=master)](https://travis-ci.org/fisherman/awesome-fish) | [`config`](https://github.com/fisherman/awesome-fish/blob/master/.travis.yml) | [fisherman/awesome-fish](https://github.com/fisherman/awesome-fish)
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.8.0
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-03-17 00:00:00.000000000 Z
11
+ date: 2016-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: faraday
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ~>
18
- - !ruby/object:Gem::Version
19
- version: 0.9.2
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ~>
25
- - !ruby/object:Gem::Version
26
- version: 0.9.2
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: parallel
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -117,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
103
  version: '0'
118
104
  requirements: []
119
105
  rubyforge_project:
120
- rubygems_version: 2.0.14
106
+ rubygems_version: 2.0.14.1
121
107
  signing_key:
122
108
  specification_version: 4
123
109
  summary: Check for valid and duplicate URLs in a file. Great for "awesome" projects.