awesome_bot 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f0cbdb5d7a7e2db7fb90d76ce2c444cee6456b1
4
- data.tar.gz: 6dee220ffd70eb6b7f8fe37302faf51f1b9e7d9e
3
+ metadata.gz: 9e4a96c0cd7a8268af60e722d10c9b239110970b
4
+ data.tar.gz: 424ed53ce3270b4790a7558d41c18427bae9cd76
5
5
  SHA512:
6
- metadata.gz: 894ee0128f3b177805182a6c6e74fac43c150182383647e27e8a3b021302937752377c836c88654aaba51b0e983159af3a49e4ebd724ab3eccb15a9c773e08af
7
- data.tar.gz: 7694fe013d9a93af945cceaffee1cf045eabf22258a59d52b69fbffeac20ea5cae8679ea1486b7f6ad29c342b3721eee19f62b5dd52dc1964b5b61378eb8fa3b
6
+ metadata.gz: 77ef0e9e6069c316dba78f0c8e868920cb4e5a7a970558ae4d77369f3daeb78d360bdc289174762a802d4e823559816ddd2d25a082fe16bbe87b70ec82251ad4
7
+ data.tar.gz: 35060b12c0219745a3ff7363d402cd6e4f6dc91b54c7666791098cdbb675fb7e52e2e617aef5eb9b6c6d1f45d4bb24429029e40cee479f6edc5ab8c88912a67d
@@ -2,6 +2,10 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+ # 1.9.1
6
+
7
+ - [fix] url redirect location encoding, reported by [@hoppfrosch](https://github.com/hoppfrosch)
8
+
5
9
  # 1.9.0
6
10
 
7
11
  - [cli] support checking multiple files (comma separated or `*` pattern i.e. `docs/*.md`), suggested by [Sota Yamashita](https://github.com/sotayamashita)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # awesome_bot
2
2
 
3
- Verify links in [awesome](https://github.com/sindresorhus/awesome) projects
3
+ Verify links in [awesome](status/status.md) projects
4
4
 
5
5
  ![](http://i.giphy.com/urvsFBDfR6N32.gif)
6
6
 
@@ -20,7 +20,13 @@ module AwesomeBot
20
20
  code = response.code==nil ? 200 : response.code.to_i
21
21
 
22
22
  headers = {}
23
- response.each { |k, v| headers[k] = v }
23
+ response.each do |k, v|
24
+ if k=='location'
25
+ headers[k] = v.force_encoding("utf-8")
26
+ else
27
+ headers[k] = v
28
+ end
29
+ end
24
30
 
25
31
  return [code, headers]
26
32
  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.9.0'
8
+ VERSION = '1.9.1'
9
9
  end
@@ -1,4 +1,3 @@
1
- vinta/awesome-python
2
1
  tiimgreen/github-cheat-sheet
3
2
  enaqx/awesome-react
4
3
  ziadoz/awesome-php
@@ -8,14 +7,14 @@ cjwirth/awesome-ios-ui
8
7
  herrbischoff/awesome-osx-command-line
9
8
  alebcay/awesome-shell
10
9
  wsargent/docker-cheat-sheet
11
- neutraltone/awesome-stock-resources
12
10
  hangtwenty/dive-into-machine-learning
11
+ neutraltone/awesome-stock-resources
13
12
  hsavit1/Awesome-Swift-Education
14
13
  iCHAIT/awesome-osx
15
14
  rosarior/awesome-django
16
15
  n1trux/awesome-sysadmin
17
- pcqpcq/open-source-android-apps
18
16
  veggiemonk/awesome-docker
17
+ pcqpcq/open-source-android-apps
19
18
  ellisonleao/magictools
20
19
  willianjusten/awesome-svg
21
20
  dhamaniasad/awesome-postgres
@@ -23,6 +22,7 @@ humiaozuzu/awesome-flask
23
22
  JStumpp/awesome-android
24
23
  dariubs/GoBooks
25
24
  unixorn/awesome-zsh-plugins
25
+ pazguille/offline-first
26
26
  chentsulin/awesome-graphql
27
27
  arslanbilal/git-cheat-sheet
28
28
  dahlia/awesome-sqlalchemy
@@ -39,16 +39,16 @@ dotfiles/dotfiles.github.com
39
39
  diegocard/awesome-html5
40
40
  stefanbuck/awesome-browser-extensions-for-github
41
41
  fasouto/awesome-dataviz
42
+ uraimo/Awesome-Swift-Playgrounds
42
43
  sotayamashita/awesome-css
43
44
  RichardLitt/awesome-conferences
44
- uraimo/Awesome-Swift-Playgrounds
45
45
  FriendsOfCake/awesome-cakephp
46
46
  caesar0301/awesome-pcaptools
47
- matteofigus/awesome-speaking
48
47
  matiassingers/awesome-readme
49
- najela/discount-for-student-dev
48
+ matteofigus/awesome-speaking
49
+ AchoArnold/discount-for-student-dev
50
50
  afonsopacifer/awesome-flexbox
51
- JavaBy/awesome-kotlin
51
+ KotlinBy/awesome-kotlin
52
52
  burningtree/awesome-json
53
53
  vredniy/awesome-newsletters
54
54
  vredniy/awesome-newsletters
@@ -58,23 +58,23 @@ aleksandar-todorovic/awesome-c
58
58
  HQarroum/awesome-iot
59
59
  phillipadsmith/awesome-github
60
60
  sergeyklay/awesome-phalcon
61
- iJackUA/awesome-vagrant
62
61
  ipfs/awesome-ipfs
62
+ iJackUA/awesome-vagrant
63
+ ramitsurana/awesome-kubernetes
64
+ bucaran/awesome-fish
63
65
  yenchenlin1994/awesome-watchos
64
66
  MakinGiants/awesome-mobile-dev
65
67
  MakinGiants/awesome-mobile-dev
68
+ lnishan/awesome-competitive-programming
66
69
  notthetup/awesome-webaudio
67
- ramitsurana/awesome-kubernetes
68
- fisherman/awesome-fish
69
70
  deanhume/typography
70
- lnishan/awesome-competitive-programming
71
71
  filipelinhares/awesome-slack
72
72
  brunopulis/awesome-a11y
73
- brabadu/awesome-fonts
74
73
  vinkla/awesome-fuse
74
+ brabadu/awesome-fonts
75
75
  benoitjadinon/awesome-xamarin
76
- christian-bromann/awesome-selenium
77
76
  mark-rushakoff/awesome-influxdb
77
+ christian-bromann/awesome-selenium
78
78
  unixorn/git-extra-commands
79
79
  RichardLitt/endangered-languages
80
80
  Neueda4j/awesome-neo4j
@@ -84,7 +84,9 @@ tedyoung/awesome-java8
84
84
  yangshun/awesome-spinners
85
85
  joubertredrat/awesome-devops
86
86
  wfhio/awesome-job-boards
87
- ipfs/weekly
87
+ ipfs/newsletter
88
88
  jjaderg/awesome-postcss
89
89
  stve/awesome-dropwizard
90
90
  ramitsurana/awesome-openstack
91
+ jakoch/awesome-composer
92
+ cdleon/awesome-front-end
@@ -1,10 +1,9 @@
1
1
  # Awesome Status
2
2
 
3
- Build status for **91** projects using https://github.com/dkhamsing/awesome_bot
3
+ Build status for **93** projects using https://github.com/dkhamsing/awesome_bot
4
4
 
5
5
  Status | Config | Repo
6
6
  --- | --- | ---
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
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)
9
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)
10
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)
@@ -14,14 +13,14 @@ Status | Config | Repo
14
13
  [![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
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)
16
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)
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)
18
16
  [![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
+ [![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)
19
18
  [![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)
20
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)
21
20
  [![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)
22
21
  [![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)
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)
24
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
+ [![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
24
  [![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)
26
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)
27
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)
@@ -29,6 +28,7 @@ Status | Config | Repo
29
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)
30
29
  [![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)
31
30
  [![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
+ [![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
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
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
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)
@@ -45,16 +45,16 @@ Status | Config | Repo
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
+ [![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)
48
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/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)
50
- [![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
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
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)
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)
54
53
  [![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)
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)
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
+ [![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
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)
57
- [![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)
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)
58
58
  [![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
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)
60
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)
@@ -64,23 +64,23 @@ Status | Config | Repo
64
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
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
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)
67
- [![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)
68
67
  [![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)
68
+ [![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/bucaran/awesome-fish.svg)](https://travis-ci.org/bucaran/awesome-fish) | [`config`](https://github.com/bucaran/awesome-fish/blob/master/.travis.yml) | [bucaran/awesome-fish](https://github.com/bucaran/awesome-fish)
69
71
  [![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)
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/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)
72
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)
73
- [![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)
74
- [![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)
75
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)
76
- [![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)
77
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
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/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)
80
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
81
  [![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)
82
- [![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)
83
82
  [![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)
83
+ [![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
84
  [![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
85
  [![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
86
  [![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)
@@ -90,8 +90,10 @@ Status | Config | Repo
90
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
91
  [![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)
92
92
  [![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)
93
- [![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)
93
+ [![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
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
95
  [![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
96
  [![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)
98
+ [![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)
97
99
  [![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.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Khamsing
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-16 00:00:00.000000000 Z
11
+ date: 2016-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel