awesome_bot 1.13.5 → 1.13.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: ab4e08a7bb4c803cff89ab20ce0e7b90e8f61a68
4
- data.tar.gz: b825a84e03b2ec32050096235b576dd78c85831a
3
+ metadata.gz: 0128f8b20d9fbe37790969ef42d89446cb7842af
4
+ data.tar.gz: 7a4ba64874d7737cfba713614c6684aeee2572b9
5
5
  SHA512:
6
- metadata.gz: 7478b6fabd5319635018f0bce9c55f7426b4d3108d1e2d818383c7641765c1f74865c1b5d3c4229addb2665c396239ea650e140696320fde5ee9e185b13a8b1e
7
- data.tar.gz: ccc9d90fbe497321fb6c7d34cbd6da53ed75a65568d3ea50266c5591e098373df4fc2ed66defd82b03dfd366a8dc7fce62ef8ed5fcb9e1690590400f1e7e4b9c
6
+ metadata.gz: 54383cbbecbd7021a5fb3de4eabcf712a168bb742b425d542c82cbb58a5028d853b827f7be77e38f68c6c57b6c4e4a753fa0eb046ea26fa711546b2c1be7e98d
7
+ data.tar.gz: 22b5134adb8fb75a7a12699a6bff3ccb87b0b345c7dc35810677e126d8c34b37c94678a15fc8654582bd16d0820dd4ddc7b505a19c314936da9fa7ffe2427a40
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+ # 1.13.6
6
+
7
+ - handle incomplete redirect
8
+
5
9
  # 1.13.5
6
10
 
7
11
  - fix header encoding
data/README.md CHANGED
@@ -75,7 +75,7 @@ $ awesome_bot docs/*.md
75
75
  # check all markdown files in docs/ directory
76
76
 
77
77
  $ awesome_bot README.md --allow-timeout -t 5
78
- # speed up validation by setting a timeout of 5s per link request and allowing timeouts
78
+ # speed up validation by setting a timeout of 5 seconds per link request and allowing timeouts
79
79
 
80
80
  $ awesome_bot README.md --allow 403,429
81
81
  # allow status code errors 403 and 429
@@ -1,4 +1,4 @@
1
- 2. [L046] 405 http://dancejs.io/
1
+
2
2
  3. [L056] 405 https://www.google.com/events/io
3
3
  5. [L130] 500 http://decentralizecamp.com/
4
4
  6. [L138] 405 https://emberfest.eu/
@@ -1,4 +1,4 @@
1
1
  [Eddystone](https://en.wikipedia.org/wiki/Eddystone_(Google))
2
- her [dockerfiles](https://github.com/jfrazelle/dockerfiles))
2
+ her [dockerfiles](https://github.com/jessfraz/dockerfiles))
3
3
 
4
4
  # ng-flow [![Build Status](https://travis-ci.org/flowjs/ng-flow.svg)](https://travis-ci.org/flowjs/ng-flow) [![Coverage Status](https://coveralls.io/repos/flowjs/ng-flow/badge.svg?branch=master&service=github)](https://coveralls.io/github/flowjs/ng-flow?branch=master)
@@ -25,6 +25,16 @@ module AwesomeBot
25
25
  headers[k] = v.force_encoding("utf-8")
26
26
  end
27
27
 
28
+ # handle incomplete redirect
29
+ loc = headers['location']
30
+ unless loc.nil?
31
+ loc_uri = URI.parse loc
32
+ if loc_uri.scheme.nil?
33
+ new_loc = uri.scheme + '://' + uri.host + loc
34
+ headers['location'] = new_loc
35
+ end
36
+ end
37
+
28
38
  return [code, headers]
29
39
  end
30
40
  end
@@ -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.13.5'
8
+ VERSION = '1.13.6'
9
9
  end
@@ -1,92 +1,98 @@
1
1
  tiimgreen/github-cheat-sheet
2
2
  enaqx/awesome-react
3
- ziadoz/awesome-php
4
3
  vsouza/awesome-ios
4
+ ziadoz/awesome-php
5
5
  matteocrippa/awesome-swift
6
- cjwirth/awesome-ios-ui
7
6
  herrbischoff/awesome-osx-command-line
7
+ cjwirth/awesome-ios-ui
8
8
  alebcay/awesome-shell
9
9
  wsargent/docker-cheat-sheet
10
+ gztchan/awesome-design
10
11
  hangtwenty/dive-into-machine-learning
11
12
  neutraltone/awesome-stock-resources
12
13
  hsavit1/Awesome-Swift-Education
13
- iCHAIT/awesome-osx
14
+ iCHAIT/awesome-macOS
15
+ veggiemonk/awesome-docker
14
16
  rosarior/awesome-django
15
17
  n1trux/awesome-sysadmin
16
- veggiemonk/awesome-docker
17
18
  pcqpcq/open-source-android-apps
19
+ chiraggude/awesome-laravel
18
20
  ellisonleao/magictools
19
21
  willianjusten/awesome-svg
20
- dhamaniasad/awesome-postgres
21
- humiaozuzu/awesome-flask
22
22
  JStumpp/awesome-android
23
+ humiaozuzu/awesome-flask
24
+ dhamaniasad/awesome-postgres
23
25
  dariubs/GoBooks
26
+ mfornos/awesome-microservices
27
+ chentsulin/awesome-graphql
24
28
  unixorn/awesome-zsh-plugins
25
29
  pazguille/offline-first
26
- chentsulin/awesome-graphql
27
- arslanbilal/git-cheat-sheet
28
- dahlia/awesome-sqlalchemy
29
30
  webpro/awesome-dotfiles
30
- ashishb/android-security-awesome
31
31
  rshipp/awesome-malware-analysis
32
- mfornos/awesome-microservices
32
+ arslanbilal/git-cheat-sheet
33
+ ashishb/android-security-awesome
34
+ dahlia/awesome-sqlalchemy
35
+ isRuslan/awesome-elm
33
36
  lerrua/remote-jobs-brazil
37
+ bnb/awesome-hyperterm
34
38
  sitepoint/awesome-symfony
35
- isRuslan/awesome-elm
36
- watson/awesome-computer-history
39
+ uraimo/Awesome-Swift-Playgrounds
37
40
  wbinnssmith/awesome-promises
38
- dotfiles/dotfiles.github.com
39
- diegocard/awesome-html5
40
- stefanbuck/awesome-browser-extensions-for-github
41
+ watson/awesome-computer-history
41
42
  fasouto/awesome-dataviz
42
- uraimo/Awesome-Swift-Playgrounds
43
+ stefanbuck/awesome-browser-extensions-for-github
43
44
  sotayamashita/awesome-css
44
- RichardLitt/awesome-conferences
45
- FriendsOfCake/awesome-cakephp
46
- caesar0301/awesome-pcaptools
45
+ diegocard/awesome-html5
46
+ KotlinBy/awesome-kotlin
47
+ dotfiles/dotfiles.github.com
47
48
  matiassingers/awesome-readme
48
- matteofigus/awesome-speaking
49
49
  AchoArnold/discount-for-student-dev
50
+ RichardLitt/awesome-conferences
51
+ caesar0301/awesome-pcaptools
52
+ HQarroum/awesome-iot
53
+ hackerkid/Mind-Expanding-Books
50
54
  afonsopacifer/awesome-flexbox
51
- KotlinBy/awesome-kotlin
55
+ FriendsOfCake/awesome-cakephp
56
+ lnishan/awesome-competitive-programming
57
+ matteofigus/awesome-speaking
58
+ ramitsurana/awesome-kubernetes
52
59
  burningtree/awesome-json
53
60
  vredniy/awesome-newsletters
54
- vredniy/awesome-newsletters
55
- uralbash/awesome-pyramid
56
- ahkscript/awesome-AutoHotkey
57
61
  aleksandar-todorovic/awesome-c
58
- HQarroum/awesome-iot
59
- phillipadsmith/awesome-github
60
- sergeyklay/awesome-phalcon
62
+ ahkscript/awesome-AutoHotkey
61
63
  ipfs/awesome-ipfs
64
+ uralbash/awesome-pyramid
65
+ brunopulis/awesome-a11y
66
+ fisherman/awesome-fish
67
+ sergeyklay/awesome-phalcon
68
+ phillipadsmith/awesome-github
62
69
  iJackUA/awesome-vagrant
63
- ramitsurana/awesome-kubernetes
64
- brj/awesome-fish
65
70
  yenchenlin1994/awesome-watchos
66
- MakinGiants/awesome-mobile-dev
67
- MakinGiants/awesome-mobile-dev
68
- lnishan/awesome-competitive-programming
69
- notthetup/awesome-webaudio
70
- deanhume/typography
71
- filipelinhares/awesome-slack
72
- brunopulis/awesome-a11y
73
- vinkla/awesome-fuse
74
- brabadu/awesome-fonts
75
71
  benoitjadinon/awesome-xamarin
72
+ deanhume/typography
73
+ notthetup/awesome-webaudio
76
74
  mark-rushakoff/awesome-influxdb
75
+ MakinGiants/awesome-mobile-dev
76
+ brabadu/awesome-fonts
77
+ vinkla/awesome-fuse
78
+ filipelinhares/awesome-slack
79
+ shime/creative-commons-media
77
80
  christian-bromann/awesome-selenium
78
81
  unixorn/git-extra-commands
79
82
  RichardLitt/endangered-languages
80
83
  Neueda4j/awesome-neo4j
81
- vkarampinis/awesome-icons
82
- rabbiabram/awesome-fortran
83
84
  tedyoung/awesome-java8
84
- yangshun/awesome-spinners
85
+ jjaderg/awesome-postcss
86
+ rabbiabram/awesome-fortran
87
+ J2TeaM/awesome-AutoIt
88
+ vkarampinis/awesome-icons
85
89
  joubertredrat/awesome-devops
90
+ yangshun/awesome-spinners
86
91
  wfhio/awesome-job-boards
92
+ jakoch/awesome-composer
93
+ GoogleCloudPlatform/awesome-google-cloud
87
94
  ipfs/newsletter
88
- jjaderg/awesome-postcss
89
95
  stve/awesome-dropwizard
90
96
  ramitsurana/awesome-openstack
91
- jakoch/awesome-composer
97
+ ellerbrock/awesome-typescript
92
98
  cdleon/awesome-front-end
data/status/status.md CHANGED
@@ -1,99 +1,105 @@
1
1
  # Awesome Status
2
2
 
3
- Build status for **93** projects using https://github.com/dkhamsing/awesome_bot
3
+ Build status for **99** 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/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)
8
8
  [![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)
9
- [![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)
10
9
  [![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)
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)
11
11
  [![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)
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)
13
12
  [![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)
13
+ [![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
14
  [![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)
15
15
  [![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)
16
+ [![Build Status](https://travis-ci.org/gztchan/awesome-design.svg)](https://travis-ci.org/gztchan/awesome-design) | [`config`](https://github.com/gztchan/awesome-design/blob/master/.travis.yml) | [gztchan/awesome-design](https://github.com/gztchan/awesome-design)
16
17
  [![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)
17
18
  [![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)
18
19
  [![Build Status](https://travis-ci.org/hsavit1/Awesome-Swift-Education.svg)](https://travis-ci.org/hsavit1/Awesome-Swift-Education) | [`config`](https://github.com/hsavit1/Awesome-Swift-Education/blob/master/.travis.yml) | [hsavit1/Awesome-Swift-Education](https://github.com/hsavit1/Awesome-Swift-Education)
19
- [![Build Status](https://travis-ci.org/iCHAIT/awesome-osx.svg)](https://travis-ci.org/iCHAIT/awesome-osx) | [`config`](https://github.com/iCHAIT/awesome-osx/blob/master/.travis.yml) | [iCHAIT/awesome-osx](https://github.com/iCHAIT/awesome-osx)
20
+ [![Build Status](https://travis-ci.org/iCHAIT/awesome-macOS.svg)](https://travis-ci.org/iCHAIT/awesome-macOS) | [`config`](https://github.com/iCHAIT/awesome-macOS/blob/master/.travis.yml) | [iCHAIT/awesome-macOS](https://github.com/iCHAIT/awesome-macOS)
21
+ [![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)
20
22
  [![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)
21
23
  [![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)
22
- [![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)
23
24
  [![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)
25
+ [![Build Status](https://travis-ci.org/chiraggude/awesome-laravel.svg)](https://travis-ci.org/chiraggude/awesome-laravel) | [`config`](https://github.com/chiraggude/awesome-laravel/blob/master/.travis.yml) | [chiraggude/awesome-laravel](https://github.com/chiraggude/awesome-laravel)
24
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)
25
27
  [![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)
26
- [![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)
27
- [![Build Status](https://travis-ci.org/humiaozuzu/awesome-flask.svg)](https://travis-ci.org/humiaozuzu/awesome-flask) | [`config`](https://github.com/humiaozuzu/awesome-flask/blob/master/.travis.yml) | [humiaozuzu/awesome-flask](https://github.com/humiaozuzu/awesome-flask)
28
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)
29
+ [![Build Status](https://travis-ci.org/humiaozuzu/awesome-flask.svg)](https://travis-ci.org/humiaozuzu/awesome-flask) | [`config`](https://github.com/humiaozuzu/awesome-flask/blob/master/.travis.yml) | [humiaozuzu/awesome-flask](https://github.com/humiaozuzu/awesome-flask)
30
+ [![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)
29
31
  [![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)
32
+ [![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)
33
+ [![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)
30
34
  [![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)
31
35
  [![Build Status](https://travis-ci.org/pazguille/offline-first.svg)](https://travis-ci.org/pazguille/offline-first) | [`config`](https://github.com/pazguille/offline-first/blob/master/.travis.yml) | [pazguille/offline-first](https://github.com/pazguille/offline-first)
32
- [![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)
33
- [![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)
34
- [![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
36
  [![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/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)
38
+ [![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)
39
+ [![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)
40
+ [![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)
41
+ [![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)
39
42
  [![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)
43
+ [![Build Status](https://travis-ci.org/bnb/awesome-hyperterm.svg)](https://travis-ci.org/bnb/awesome-hyperterm) | [`config`](https://github.com/bnb/awesome-hyperterm/blob/master/.travis.yml) | [bnb/awesome-hyperterm](https://github.com/bnb/awesome-hyperterm)
40
44
  [![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
- [![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)
42
- [![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)
45
+ [![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)
43
46
  [![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)
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
- [![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
- [![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
+ [![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)
47
48
  [![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
- [![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)
49
+ [![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)
49
50
  [![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)
50
- [![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)
51
- [![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)
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)
51
+ [![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)
52
+ [![Build Status](https://travis-ci.org/KotlinBy/awesome-kotlin.svg)](https://travis-ci.org/KotlinBy/awesome-kotlin) | [`config`](https://github.com/KotlinBy/awesome-kotlin/blob/master/.travis.yml) | [KotlinBy/awesome-kotlin](https://github.com/KotlinBy/awesome-kotlin)
53
+ [![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)
53
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)
54
- [![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
55
  [![Build Status](https://travis-ci.org/AchoArnold/discount-for-student-dev.svg)](https://travis-ci.org/AchoArnold/discount-for-student-dev) | [`config`](https://github.com/AchoArnold/discount-for-student-dev/blob/master/.travis.yml) | [AchoArnold/discount-for-student-dev](https://github.com/AchoArnold/discount-for-student-dev)
56
+ [![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)
57
+ [![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)
58
+ [![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)
59
+ [![Build Status](https://travis-ci.org/hackerkid/Mind-Expanding-Books.svg)](https://travis-ci.org/hackerkid/Mind-Expanding-Books) | [`config`](https://github.com/hackerkid/Mind-Expanding-Books/blob/master/.travis.yml) | [hackerkid/Mind-Expanding-Books](https://github.com/hackerkid/Mind-Expanding-Books)
56
60
  [![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)
57
- [![Build Status](https://travis-ci.org/KotlinBy/awesome-kotlin.svg)](https://travis-ci.org/KotlinBy/awesome-kotlin) | [`config`](https://github.com/KotlinBy/awesome-kotlin/blob/master/.travis.yml) | [KotlinBy/awesome-kotlin](https://github.com/KotlinBy/awesome-kotlin)
61
+ [![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)
62
+ [![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)
63
+ [![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)
64
+ [![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)
58
65
  [![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)
59
66
  [![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)
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)
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)
63
67
  [![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
- [![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)
65
- [![Build Status](https://travis-ci.org/phillipadsmith/awesome-github.svg)](https://travis-ci.org/phillipadsmith/awesome-github) | [`config`](https://github.com/phillipadsmith/awesome-github/blob/master/.travis.yml) | [phillipadsmith/awesome-github](https://github.com/phillipadsmith/awesome-github)
66
- [![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)
68
+ [![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)
67
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)
70
+ [![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)
71
+ [![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)
72
+ [![Build Status](https://travis-ci.org/fisherman/awesome-fish.svg)](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)
73
+ [![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)
74
+ [![Build Status](https://travis-ci.org/phillipadsmith/awesome-github.svg)](https://travis-ci.org/phillipadsmith/awesome-github) | [`config`](https://github.com/phillipadsmith/awesome-github/blob/master/.travis.yml) | [phillipadsmith/awesome-github](https://github.com/phillipadsmith/awesome-github)
68
75
  [![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)
69
- [![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)
70
- [![Build Status](https://travis-ci.org/brj/awesome-fish.svg)](https://travis-ci.org/brj/awesome-fish) | [`config`](https://github.com/brj/awesome-fish/blob/master/.travis.yml) | [brj/awesome-fish](https://github.com/brj/awesome-fish)
71
76
  [![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)
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)
73
- [![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)
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/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)
76
- [![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)
77
- [![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)
78
- [![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)
79
- [![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)
80
- [![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)
81
77
  [![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)
78
+ [![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)
79
+ [![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)
82
80
  [![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)
81
+ [![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)
82
+ [![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)
83
+ [![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)
84
+ [![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)
85
+ [![Build Status](https://travis-ci.org/shime/creative-commons-media.svg)](https://travis-ci.org/shime/creative-commons-media) | [`config`](https://github.com/shime/creative-commons-media/blob/master/.travis.yml) | [shime/creative-commons-media](https://github.com/shime/creative-commons-media)
83
86
  [![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)
84
87
  [![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)
85
88
  [![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)
86
89
  [![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)
87
- [![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)
88
- [![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)
89
90
  [![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)
90
- [![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)
91
+ [![Build Status](https://travis-ci.org/jjaderg/awesome-postcss.svg)](https://travis-ci.org/jjaderg/awesome-postcss) | [`config`](https://github.com/jjaderg/awesome-postcss/blob/master/.travis.yml) | [jjaderg/awesome-postcss](https://github.com/jjaderg/awesome-postcss)
92
+ [![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)
93
+ [![Build Status](https://travis-ci.org/J2TeaM/awesome-AutoIt.svg)](https://travis-ci.org/J2TeaM/awesome-AutoIt) | [`config`](https://github.com/J2TeaM/awesome-AutoIt/blob/master/.travis.yml) | [J2TeaM/awesome-AutoIt](https://github.com/J2TeaM/awesome-AutoIt)
94
+ [![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)
91
95
  [![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)
96
+ [![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)
92
97
  [![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)
98
+ [![Build Status](https://travis-ci.org/jakoch/awesome-composer.svg)](https://travis-ci.org/jakoch/awesome-composer) | [`config`](https://github.com/jakoch/awesome-composer/blob/master/.travis.yml) | [jakoch/awesome-composer](https://github.com/jakoch/awesome-composer)
99
+ [![Build Status](https://travis-ci.org/GoogleCloudPlatform/awesome-google-cloud.svg)](https://travis-ci.org/GoogleCloudPlatform/awesome-google-cloud) | [`config`](https://github.com/GoogleCloudPlatform/awesome-google-cloud/blob/master/.travis.yml) | [GoogleCloudPlatform/awesome-google-cloud](https://github.com/GoogleCloudPlatform/awesome-google-cloud)
93
100
  [![Build Status](https://travis-ci.org/ipfs/newsletter.svg)](https://travis-ci.org/ipfs/newsletter) | [`config`](https://github.com/ipfs/newsletter/blob/master/.travis.yml) | [ipfs/newsletter](https://github.com/ipfs/newsletter)
94
- [![Build Status](https://travis-ci.org/jjaderg/awesome-postcss.svg)](https://travis-ci.org/jjaderg/awesome-postcss) | [`config`](https://github.com/jjaderg/awesome-postcss/blob/master/.travis.yml) | [jjaderg/awesome-postcss](https://github.com/jjaderg/awesome-postcss)
95
101
  [![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)
96
102
  [![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)
97
- [![Build Status](https://travis-ci.org/jakoch/awesome-composer.svg)](https://travis-ci.org/jakoch/awesome-composer) | [`config`](https://github.com/jakoch/awesome-composer/blob/master/.travis.yml) | [jakoch/awesome-composer](https://github.com/jakoch/awesome-composer)
103
+ [![Build Status](https://travis-ci.org/ellerbrock/awesome-typescript.svg)](https://travis-ci.org/ellerbrock/awesome-typescript) | [`config`](https://github.com/ellerbrock/awesome-typescript/blob/master/.travis.yml) | [ellerbrock/awesome-typescript](https://github.com/ellerbrock/awesome-typescript)
98
104
  [![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)
99
105
  [![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)
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.13.5
4
+ version: 1.13.6
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-09-19 00:00:00.000000000 Z
11
+ date: 2016-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel