awesome_bot 1.14.0 → 1.15.0

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: 222eeafb2dd5f24932f3119d0bf7c832bbbccd9a
4
- data.tar.gz: 445660201c25042da17db27a5043a58eac1c22bf
3
+ metadata.gz: 267de098db4924f5dd57029da3bcd2691d1247d7
4
+ data.tar.gz: 57258f1286e74ccb3428e8f2050882f1517e7639
5
5
  SHA512:
6
- metadata.gz: f47ba3a8cd1bce1a1cec85691d40fbdff644e46f81886b15fd86ae863542cddf2309454b951ea9ee5078112bba742953a0760b75b6c8fb183a036cb36be743d9
7
- data.tar.gz: 51df955b34fbac2cceb5de31731b8d697b4a3fec727cb49258b76d6c37974ec2d57f9f026151d969d3d6ad20991429e5f69763e9d7bc58bd793dc9b517aca593
6
+ metadata.gz: 74c8ff9149f12fade95db78224a1bd2d7a865186bbbaefcb8eac8256002dd3daf9fdc386fcd4891cab55795739764e0ae68e5737a1658964a9e9fed6eb3b4222
7
+ data.tar.gz: deadc29f548283b8a2e7065b70cb89734f520de48a8f55b9222418e13781cde045f814e0cee02c71f69efac28bec0b326464836036d4855d236c48d21787238a
@@ -2,6 +2,10 @@
2
2
 
3
3
  Changes by [Daniel Khamsing][] unless otherwise noted.
4
4
 
5
+ # 1.15.0
6
+
7
+ - add `--skip-save-results` option
8
+
5
9
  # 1.14.0
6
10
 
7
11
  - add support for request delay
data/README.md CHANGED
@@ -29,6 +29,7 @@ Usage: awesome_bot [file or files]
29
29
  --allow-timeout URLs that time out are allowed
30
30
  -d, --request-delay [seconds] Set request delay
31
31
  -t, --set-timeout [seconds] Set connection timeout
32
+ --skip-save-results Skip saving results
32
33
  -w, --white-list [urls] Comma separated URLs to white list
33
34
  ```
34
35
 
@@ -25,6 +25,7 @@ module AwesomeBot
25
25
  opts.on('--allow-timeout', TrueClass, 'URLs that time out are allowed') { |val| options['allow_timeout'] = val }
26
26
  opts.on('-d', '--request-delay [seconds]', Integer, 'Set request delay') { |val| options['delay'] = val }
27
27
  opts.on('-t', '--set-timeout [seconds]', Integer, 'Set connection timeout') { |val| options['timeout'] = val }
28
+ opts.on('--skip-save-results', TrueClass, 'Skip saving results') { |val| options['no_results'] = val }
28
29
  opts.on('-w', '--white-list [urls]', Array, 'Comma separated URLs to white list') { |val| options['white_list'] = val }
29
30
 
30
31
  opts.on_tail("--help") do
@@ -101,6 +102,13 @@ module AwesomeBot
101
102
 
102
103
  puts "> White list links matching: #{white_listed.join ', '} " unless white_listed.nil?
103
104
 
105
+ no_results = options['no_results']
106
+ if no_results == true
107
+ puts '> Will not save results'
108
+ else
109
+ no_results = false
110
+ end
111
+
104
112
  options = {
105
113
  'allowdupe' => skip_dupe,
106
114
  'delay' => delay,
@@ -113,8 +121,6 @@ module AwesomeBot
113
121
  print o
114
122
  end
115
123
 
116
-
117
-
118
124
  digits = number_of_digits content
119
125
  unless r.white_listed.nil?
120
126
  puts "\n> White listed:"
@@ -138,8 +144,8 @@ module AwesomeBot
138
144
 
139
145
  if r.success(options) == true
140
146
  puts 'No issues :-)'
141
- write_results(filename, r)
142
- write_markdown_results(filename, nil)
147
+ write_results(filename, r, no_results)
148
+ write_markdown_results(filename, nil, no_results)
143
149
  return STATUS_OK
144
150
  else
145
151
  filtered_issues = []
@@ -189,9 +195,10 @@ module AwesomeBot
189
195
  end
190
196
  end
191
197
 
192
- write_results(filename, r)
193
- filtered = write_results_filtered(filename, filtered_issues)
194
- write_markdown_results(filename, filtered)
198
+ write_results(filename, r, no_results)
199
+ filtered = write_results_filtered(filename, filtered_issues, no_results)
200
+ write_markdown_results(filename, filtered, no_results)
201
+
195
202
  return 'Issues'
196
203
  end
197
204
  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.14.0'
8
+ VERSION = '1.15.0'
9
9
  end
@@ -9,7 +9,9 @@ module AwesomeBot
9
9
  f.gsub('/','-')
10
10
  end
11
11
 
12
- def write_markdown_results(filename, filtered)
12
+ def write_markdown_results(filename, filtered, silent)
13
+ return false if silent==true
14
+
13
15
  payload =
14
16
  if filtered.nil?
15
17
  {'error'=>false}
@@ -53,16 +55,24 @@ module AwesomeBot
53
55
  results_file = "#{RESULTS_PREFIX}-#{results_file_filter}-markdown-table.json"
54
56
  File.open(results_file, 'w') { |f| f.write JSON.pretty_generate(payload) }
55
57
  puts "Wrote markdown table results to #{results_file}"
58
+
59
+ return true
56
60
  end
57
61
 
58
- def write_results(f, r)
62
+ def write_results(f, r, silent)
63
+ return false if silent==true
64
+
59
65
  results_file_filter = filter_filename f
60
66
  results_file = "#{RESULTS_PREFIX}-#{results_file_filter}.json"
61
67
  r.write results_file
62
68
  puts "\nWrote results to #{results_file}"
69
+
70
+ return true
63
71
  end
64
72
 
65
- def write_results_filtered(file, filtered)
73
+ def write_results_filtered(file, filtered, silent)
74
+ return nil if silent==true
75
+
66
76
  results_file_filter = filter_filename file
67
77
  results_file = "#{RESULTS_PREFIX}-#{results_file_filter}-filtered.json"
68
78
  File.open(results_file, 'w') { |f| f.write JSON.pretty_generate(filtered) }
@@ -1,104 +1,114 @@
1
- yangshun/awesome-spinners
2
- yenchenlin1994/awesome-watchos
3
- christian-bromann/awesome-selenium
4
- ramitsurana/awesome-openstack
5
- vkarampinis/awesome-icons
6
- webpro/awesome-dotfiles
7
- GoogleCloudPlatform/awesome-google-cloud
8
- filipelinhares/awesome-slack
9
- phillipadsmith/awesome-github
10
- diegocard/awesome-html5
11
- shime/creative-commons-media
12
- watson/awesome-computer-history
13
- arslanbilal/git-cheat-sheet
14
- dotfiles/dotfiles.github.com
15
- dahlia/awesome-sqlalchemy
16
1
  tiimgreen/github-cheat-sheet
17
- RichardLitt/endangered-languages
18
- iJackUA/awesome-vagrant
19
- matteofigus/awesome-speaking
20
- hsavit1/Awesome-Swift-Education
21
- ellerbrock/awesome-typescript
22
- caesar0301/awesome-pcaptools
23
- neutraltone/awesome-stock-resources
2
+ vsouza/awesome-ios
3
+ bayandin/awesome-awesomeness
4
+ enaqx/awesome-react
5
+ herrbischoff/awesome-osx-command-line
6
+ ziadoz/awesome-php
7
+ toddmotto/public-apis
8
+ matteocrippa/awesome-swift
9
+ wsargent/docker-cheat-sheet
24
10
  cjwirth/awesome-ios-ui
25
- deanhume/typography
26
- cdleon/awesome-front-end
27
- dariubs/GoBooks
28
- Fr0sT-Brutal/awesome-delphi
11
+ alebcay/awesome-shell
12
+ abhishekbanthia/Public-APIs
29
13
  gztchan/awesome-design
30
- sotayamashita/awesome-css
31
- jjaderg/awesome-postcss
32
- wbinnssmith/awesome-promises
33
- iCHAIT/awesome-macOS
34
- ahkscript/awesome-AutoHotkey
35
- HQarroum/awesome-iot
36
- brabadu/awesome-fonts
37
- afonsopacifer/awesome-flexbox
14
+ veggiemonk/awesome-docker
38
15
  hangtwenty/dive-into-machine-learning
39
- notthetup/awesome-webaudio
40
- JStumpp/awesome-android
41
- ipfs/newsletter
42
- lnishan/awesome-competitive-programming
43
- jakoch/awesome-composer
44
- stve/awesome-dropwizard
45
- herrbischoff/awesome-osx-command-line
46
- unixorn/git-extra-commands
16
+ neutraltone/awesome-stock-resources
17
+ iCHAIT/awesome-macOS
18
+ pcqpcq/open-source-android-apps
19
+ hsavit1/Awesome-Swift-Education
20
+ rosarior/awesome-django
47
21
  n1trux/awesome-sysadmin
22
+ chiraggude/awesome-laravel
23
+ ellisonleao/magictools
24
+ JStumpp/awesome-android
48
25
  humiaozuzu/awesome-flask
49
- rabbiabram/awesome-fortran
50
- aleksandar-todorovic/awesome-c
26
+ j-delaney/easy-application
27
+ AngularClass/awesome-angular
28
+ chentsulin/awesome-graphql
29
+ willianjusten/awesome-svg
30
+ dhamaniasad/awesome-postgres
31
+ dariubs/GoBooks
32
+ mfornos/awesome-microservices
33
+ bnb/awesome-hyper
34
+ unixorn/awesome-zsh-plugins
35
+ pazguille/offline-first
36
+ isRuslan/awesome-elm
37
+ rshipp/awesome-malware-analysis
38
+ ashishb/android-security-awesome
39
+ webpro/awesome-dotfiles
40
+ arslanbilal/git-cheat-sheet
41
+ greatghoul/remote-working
42
+ dahlia/awesome-sqlalchemy
43
+ ekremkaraca/awesome-rails
44
+ lerrua/remote-jobs-brazil
51
45
  uraimo/Awesome-Swift-Playgrounds
52
- MakinGiants/awesome-mobile-dev
53
- FriendsOfCake/awesome-cakephp
46
+ lnishan/awesome-competitive-programming
47
+ sitepoint/awesome-symfony
48
+ KotlinBy/awesome-kotlin
49
+ fasouto/awesome-dataviz
50
+ wbinnssmith/awesome-promises
51
+ sotayamashita/awesome-css
52
+ matiassingers/awesome-readme
53
+ watson/awesome-computer-history
54
+ stefanbuck/awesome-browser-extensions-for-github
55
+ kciter/awesome-style-guide
54
56
  ramitsurana/awesome-kubernetes
57
+ diegocard/awesome-html5
58
+ HQarroum/awesome-iot
59
+ hackerkid/Mind-Expanding-Books
60
+ caesar0301/awesome-pcaptools
61
+ dotfiles/dotfiles.github.com
62
+ afonsopacifer/awesome-flexbox
63
+ AchoArnold/discount-for-student-dev
55
64
  RichardLitt/awesome-conferences
56
- ashishb/android-security-awesome
57
- fisherman/awesome-fish
58
- wfhio/awesome-job-boards
59
- ellisonleao/magictools
60
- sitepoint/awesome-symfony
61
- m1guelpf/awesome-pentester
62
- sergeyklay/awesome-phalcon
63
- rshipp/awesome-malware-analysis
65
+ FriendsOfCake/awesome-cakephp
66
+ matteofigus/awesome-speaking
67
+ aleksandar-todorovic/awesome-c
64
68
  ipfs/awesome-ipfs
65
- pcqpcq/open-source-android-apps
66
- willianjusten/awesome-svg
67
- rosarior/awesome-django
68
- alebcay/awesome-shell
69
- matiassingers/awesome-readme
70
69
  burningtree/awesome-json
71
- bayandin/awesome-awesomeness
72
- wsargent/docker-cheat-sheet
73
70
  vredniy/awesome-newsletters
74
- J2TeaM/awesome-AutoIt
75
- isRuslan/awesome-elm
76
- tedyoung/awesome-java8
77
- mfornos/awesome-microservices
78
- aviaryan/awesome-no-login-web-apps
79
- neueda/awesome-neo4j
80
- dhamaniasad/awesome-postgres
81
- KotlinBy/awesome-kotlin
82
- pazguille/offline-first
83
- AngularClass/awesome-angular2
84
- joubertredrat/awesome-devops
85
- chiraggude/awesome-laravel
86
- uralbash/awesome-pyramid
87
- veggiemonk/awesome-docker
88
- hackerkid/Mind-Expanding-Books
89
- lerrua/remote-jobs-brazil
90
- fasouto/awesome-dataviz
71
+ ahkscript/awesome-AutoHotkey
91
72
  benoitjadinon/awesome-xamarin
92
- chentsulin/awesome-graphql
93
- AchoArnold/discount-for-student-dev
94
- enaqx/awesome-react
95
- bnb/awesome-hyper
96
- matteocrippa/awesome-swift
97
- vsouza/awesome-ios
98
- stefanbuck/awesome-browser-extensions-for-github
99
- ziadoz/awesome-php
100
- ekremkaraca/awesome-rails
101
- unixorn/awesome-zsh-plugins
102
- vinkla/awesome-fuse
103
73
  brunopulis/awesome-a11y
74
+ jbucaran/awesome-fish
75
+ hackerkid/bots
76
+ uralbash/awesome-pyramid
77
+ sergeyklay/awesome-phalcon
78
+ phillipadsmith/awesome-github
79
+ yenchenlin1994/awesome-watchos
80
+ Fr0sT-Brutal/awesome-delphi
81
+ iJackUA/awesome-vagrant
104
82
  mark-rushakoff/awesome-influxdb
83
+ deanhume/typography
84
+ vinkla/awesome-fuse
85
+ aviaryan/awesome-no-login-web-apps
86
+ notthetup/awesome-webaudio
87
+ MakinGiants/awesome-android-learner
88
+ brabadu/awesome-fonts
89
+ christian-bromann/awesome-selenium
90
+ filipelinhares/awesome-slack
91
+ tedyoung/awesome-java8
92
+ jjaderg/awesome-postcss
93
+ shime/creative-commons-media
94
+ unixorn/git-extra-commands
95
+ jakoch/awesome-composer
96
+ J2TeaM/awesome-AutoIt
97
+ neueda/awesome-neo4j
98
+ RichardLitt/endangered-languages
99
+ rabbiabram/awesome-fortran
100
+ joubertredrat/awesome-devops
101
+ vkarampinis/awesome-icons
102
+ yangshun/awesome-spinners
103
+ wfhio/awesome-job-boards
104
+ Jolg42/awesome-typography
105
+ sjfricke/awesome-webgl
106
+ GoogleCloudPlatform/awesome-google-cloud
107
+ stve/awesome-dropwizard
108
+ ramitsurana/awesome-openstack
109
+ ipfs/newsletter
110
+ ellerbrock/awesome-typescript
111
+ cdleon/awesome-front-end
112
+ adriagalin/tools
113
+ arthurwayne/awesome-pentester
114
+ kdeldycke/awesome-falsehood
@@ -1,111 +1,121 @@
1
- # Awesome Status
1
+ # Awesome Status
2
2
 
3
- Build status for **105** projects using https://github.com/dkhamsing/awesome_bot
3
+ Build status for **114** projects using https://github.com/dkhamsing/awesome_bot
4
4
 
5
- Status | Config | Repo
6
- --- | --- | ---
7
- [![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)
8
- [![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)
9
- [![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)
10
- [![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)
11
- [![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)
12
- [![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)
13
- [![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)
14
- [![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)
15
- [![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)
16
- [![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)
17
- [![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)
18
- [![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)
19
- [![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)
20
- [![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)
21
- [![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)
22
- [![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)
23
- [![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)
24
- [![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)
25
- [![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)
26
- [![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)
27
- [![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)
28
- [![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)
29
- [![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)
30
- [![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)
31
- [![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)
32
- [![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)
33
- [![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)
34
- [![Build Status](https://travis-ci.org/Fr0sT-Brutal/awesome-delphi.svg)](https://travis-ci.org/Fr0sT-Brutal/awesome-delphi) | [`config`](https://github.com/Fr0sT-Brutal/awesome-delphi/blob/master/.travis.yml) | [Fr0sT-Brutal/awesome-delphi](https://github.com/Fr0sT-Brutal/awesome-delphi)
35
- [![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)
36
- [![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)
37
- [![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)
38
- [![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)
39
- [![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)
40
- [![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)
41
- [![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)
42
- [![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)
43
- [![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)
44
- [![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)
45
- [![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)
46
- [![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)
47
- [![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)
48
- [![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)
49
- [![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)
50
- [![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)
51
- [![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)
52
- [![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)
53
- [![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)
54
- [![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)
55
- [![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)
56
- [![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)
57
- [![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)
58
- [![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)
59
- [![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)
60
- [![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)
61
- [![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)
62
- [![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)
63
- [![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)
64
- [![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)
65
- [![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)
66
- [![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)
67
- [![Build Status](https://travis-ci.org/m1guelpf/awesome-pentester.svg)](https://travis-ci.org/m1guelpf/awesome-pentester) | [`config`](https://github.com/m1guelpf/awesome-pentester/blob/master/.travis.yml) | [m1guelpf/awesome-pentester](https://github.com/m1guelpf/awesome-pentester)
68
- [![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)
69
- [![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)
70
- [![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)
71
- [![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)
72
- [![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)
73
- [![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)
74
- [![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)
75
- [![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)
76
- [![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)
77
- [![Build Status](https://travis-ci.org/bayandin/awesome-awesomeness.svg)](https://travis-ci.org/bayandin/awesome-awesomeness) | [`config`](https://github.com/bayandin/awesome-awesomeness/blob/master/.travis.yml) | [bayandin/awesome-awesomeness](https://github.com/bayandin/awesome-awesomeness)
78
- [![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)
79
- [![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)
80
- [![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)
81
- [![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)
82
- [![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)
83
- [![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)
84
- [![Build Status](https://travis-ci.org/aviaryan/awesome-no-login-web-apps.svg)](https://travis-ci.org/aviaryan/awesome-no-login-web-apps) | [`config`](https://github.com/aviaryan/awesome-no-login-web-apps/blob/master/.travis.yml) | [aviaryan/awesome-no-login-web-apps](https://github.com/aviaryan/awesome-no-login-web-apps)
85
- [![Build Status](https://api.travis-ci.org/neueda/awesome-neo4j.svg)](https://travis-ci.org/neueda/awesome-neo4j) | [`config`](https://github.com/neueda/awesome-neo4j/blob/master/.travis.yml) | [Neueda4j/awesome-neo4j](https://github.com/neueda/awesome-neo4j)
86
- [![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)
87
- [![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)
88
- [![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)
89
- [![Build Status](https://travis-ci.org/AngularClass/awesome-angular2.svg)](https://travis-ci.org/AngularClass/awesome-angular2) | [`config`](https://github.com/AngularClass/awesome-angular2/blob/master/.travis.yml) | [AngularClass/awesome-angular2](https://github.com/AngularClass/awesome-angular2)
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)
91
- [![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)
92
- [![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)
93
- [![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)
94
- [![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)
95
- [![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)
96
- [![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)
97
- [![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)
98
- [![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)
99
- [![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)
100
- [![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)
101
- [![Build Status](https://travis-ci.org/bnb/awesome-hyper.svg)](https://travis-ci.org/bnb/awesome-hyper) | [`config`](https://github.com/bnb/awesome-hyper/blob/master/.travis.yml) | [bnb/awesome-hyper](https://github.com/bnb/awesome-hyper)
102
- [![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)
103
- [![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)
104
- [![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)
105
- [![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)
106
- [![Build Status](https://travis-ci.org/ekremkaraca/awesome-rails.svg)](https://travis-ci.org/ekremkaraca/awesome-rails) | [`config`](https://github.com/ekremkaraca/awesome-rails/blob/master/.travis.yml) | [ekremkaraca/awesome-rails](https://github.com/ekremkaraca/awesome-rails)
107
- [![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)
108
- [![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)
109
- [![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)
110
- [![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)
111
- [![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)
5
+ Status | Config | Repo
6
+ --- | --- | ---
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
+ [![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)
9
+ [![Build Status](https://travis-ci.org/bayandin/awesome-awesomeness.svg)](https://travis-ci.org/bayandin/awesome-awesomeness) | [`config`](https://github.com/bayandin/awesome-awesomeness/blob/master/.travis.yml) | [bayandin/awesome-awesomeness](https://github.com/bayandin/awesome-awesomeness)
10
+ [![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
+ [![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)
12
+ [![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)
13
+ [![Build Status](https://travis-ci.org/toddmotto/public-apis.svg)](https://travis-ci.org/toddmotto/public-apis) | [`config`](https://github.com/toddmotto/public-apis/blob/master/.travis.yml) | [toddmotto/public-apis](https://github.com/toddmotto/public-apis)
14
+ [![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)
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/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)
17
+ [![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)
18
+ [![Build Status](https://travis-ci.org/abhishekbanthia/Public-APIs.svg)](https://travis-ci.org/abhishekbanthia/Public-APIs) | [`config`](https://github.com/abhishekbanthia/Public-APIs/blob/master/.travis.yml) | [abhishekbanthia/Public-APIs](https://github.com/abhishekbanthia/Public-APIs)
19
+ [![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)
20
+ [![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)
21
+ [![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)
22
+ [![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)
23
+ [![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)
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/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)
26
+ [![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)
27
+ [![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)
28
+ [![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)
29
+ [![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)
30
+ [![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)
31
+ [![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)
32
+ [![Build Status](https://travis-ci.org/j-delaney/easy-application.svg)](https://travis-ci.org/j-delaney/easy-application) | [`config`](https://github.com/j-delaney/easy-application/blob/master/.travis.yml) | [j-delaney/easy-application](https://github.com/j-delaney/easy-application)
33
+ [![Build Status](https://travis-ci.org/AngularClass/awesome-angular.svg)](https://travis-ci.org/AngularClass/awesome-angular) | [`config`](https://github.com/AngularClass/awesome-angular/blob/gh-pages/.travis.yml) | [AngularClass/awesome-angular](https://github.com/AngularClass/awesome-angular)
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)
35
+ [![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)
36
+ [![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)
37
+ [![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)
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/bnb/awesome-hyper.svg)](https://travis-ci.org/bnb/awesome-hyper) | [`config`](https://github.com/bnb/awesome-hyper/blob/master/.travis.yml) | [bnb/awesome-hyper](https://github.com/bnb/awesome-hyper)
40
+ [![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)
41
+ [![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)
42
+ [![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)
43
+ [![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)
44
+ [![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)
45
+ [![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)
46
+ [![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)
47
+ [![Build Status](https://travis-ci.org/greatghoul/remote-working.svg)](https://travis-ci.org/greatghoul/remote-working) | [`config`](https://github.com/greatghoul/remote-working/blob/master/.travis.yml) | [greatghoul/remote-working](https://github.com/greatghoul/remote-working)
48
+ [![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)
49
+ [![Build Status](https://travis-ci.org/ekremkaraca/awesome-rails.svg)](https://travis-ci.org/ekremkaraca/awesome-rails) | [`config`](https://github.com/ekremkaraca/awesome-rails/blob/master/.travis.yml) | [ekremkaraca/awesome-rails](https://github.com/ekremkaraca/awesome-rails)
50
+ [![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)
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)
52
+ [![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)
53
+ [![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)
54
+ [![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)
55
+ [![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)
56
+ [![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)
57
+ [![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)
58
+ [![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)
59
+ [![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)
60
+ [![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)
61
+ [![Build Status](https://travis-ci.org/kciter/awesome-style-guide.svg)](https://travis-ci.org/kciter/awesome-style-guide) | [`config`](https://github.com/kciter/awesome-style-guide/blob/master/.travis.yml) | [kciter/awesome-style-guide](https://github.com/kciter/awesome-style-guide)
62
+ [![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)
63
+ [![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)
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/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)
66
+ [![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)
67
+ [![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)
68
+ [![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)
69
+ [![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)
70
+ [![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)
71
+ [![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)
72
+ [![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)
73
+ [![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)
74
+ [![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)
75
+ [![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)
76
+ [![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)
77
+ [![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)
78
+ [![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)
79
+ [![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)
80
+ [![Build Status](https://travis-ci.org/jbucaran/awesome-fish.svg)](https://travis-ci.org/jbucaran/awesome-fish) | [`config`](https://github.com/jbucaran/awesome-fish/blob/master/.travis.yml) | [jbucaran/awesome-fish](https://github.com/jbucaran/awesome-fish)
81
+ [![Build Status](https://travis-ci.org/hackerkid/bots.svg)](https://travis-ci.org/hackerkid/bots) | [`config`](https://github.com/hackerkid/bots/blob/master/.travis.yml) | [hackerkid/bots](https://github.com/hackerkid/bots)
82
+ [![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)
83
+ [![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)
84
+ [![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)
85
+ [![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)
86
+ [![Build Status](https://travis-ci.org/Fr0sT-Brutal/awesome-delphi.svg)](https://travis-ci.org/Fr0sT-Brutal/awesome-delphi) | [`config`](https://github.com/Fr0sT-Brutal/awesome-delphi/blob/master/.travis.yml) | [Fr0sT-Brutal/awesome-delphi](https://github.com/Fr0sT-Brutal/awesome-delphi)
87
+ [![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)
88
+ [![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)
89
+ [![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)
90
+ [![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)
91
+ [![Build Status](https://travis-ci.org/aviaryan/awesome-no-login-web-apps.svg)](https://travis-ci.org/aviaryan/awesome-no-login-web-apps) | [`config`](https://github.com/aviaryan/awesome-no-login-web-apps/blob/master/.travis.yml) | [aviaryan/awesome-no-login-web-apps](https://github.com/aviaryan/awesome-no-login-web-apps)
92
+ [![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)
93
+ [![Build Status](https://travis-ci.org/MakinGiants/awesome-android-learner.svg)](https://travis-ci.org/MakinGiants/awesome-android-learner) | [`config`](https://github.com/MakinGiants/awesome-android-learner/blob/master/.travis.yml) | [MakinGiants/awesome-android-learner](https://github.com/MakinGiants/awesome-android-learner)
94
+ [![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)
95
+ [![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)
96
+ [![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)
97
+ [![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)
98
+ [![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)
99
+ [![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)
100
+ [![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)
101
+ [![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)
102
+ [![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)
103
+ [![Build Status](https://travis-ci.org/neueda/awesome-neo4j.svg)](https://travis-ci.org/neueda/awesome-neo4j) | [`config`](https://github.com/neueda/awesome-neo4j/blob/master/.travis.yml) | [neueda/awesome-neo4j](https://github.com/neueda/awesome-neo4j)
104
+ [![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)
105
+ [![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)
106
+ [![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)
107
+ [![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)
108
+ [![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)
109
+ [![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)
110
+ [![Build Status](https://travis-ci.org/Jolg42/awesome-typography.svg)](https://travis-ci.org/Jolg42/awesome-typography) | [`config`](https://github.com/Jolg42/awesome-typography/blob/master/.travis.yml) | [Jolg42/awesome-typography](https://github.com/Jolg42/awesome-typography)
111
+ [![Build Status](https://travis-ci.org/sjfricke/awesome-webgl.svg)](https://travis-ci.org/sjfricke/awesome-webgl) | [`config`](https://github.com/sjfricke/awesome-webgl/blob/master/.travis.yml) | [sjfricke/awesome-webgl](https://github.com/sjfricke/awesome-webgl)
112
+ [![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)
113
+ [![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)
114
+ [![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)
115
+ [![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)
116
+ [![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)
117
+ [![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)
118
+ [![Build Status](https://travis-ci.org/adriagalin/tools.svg)](https://travis-ci.org/adriagalin/tools) | [`config`](https://github.com/adriagalin/tools/blob/master/.travis.yml) | [adriagalin/tools](https://github.com/adriagalin/tools)
119
+ [![Build Status](https://travis-ci.org/arthurwayne/awesome-pentester.svg)](https://travis-ci.org/arthurwayne/awesome-pentester) | [`config`](https://github.com/arthurwayne/awesome-pentester/blob/master/.travis.yml) | [arthurwayne/awesome-pentester](https://github.com/arthurwayne/awesome-pentester)
120
+ [![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)
121
+ [![Build Status](https://travis-ci.org/kdeldycke/awesome-falsehood.svg?branch=master)](https://travis-ci.org/kdeldycke/awesome-falsehood) | [`config`](https://github.com/kdeldycke/awesome-falsehood/blob/master/.travis.yml) | [kdeldycke/awesome-falsehood](https://github.com/kdeldycke/awesome-falsehood)
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.14.0
4
+ version: 1.15.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: 2017-02-28 00:00:00.000000000 Z
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel