dropcaster 0.0.8 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.rubocop.yml +174 -0
- data/.ruby-version +1 -1
- data/.travis.yml +14 -4
- data/Gemfile.lock +244 -135
- data/Guardfile +8 -6
- data/Rakefile +7 -4
- data/Vagrantfile +2 -0
- data/bin/dropcaster +60 -58
- data/bin/lstags +28 -25
- data/dropcaster.gemspec +14 -12
- data/lib/dropcaster/channel.rb +53 -42
- data/lib/dropcaster/channel_file_locator.rb +8 -5
- data/lib/dropcaster/contributors.rb +32 -5
- data/lib/dropcaster/errors.rb +6 -4
- data/lib/dropcaster/item.rb +19 -13
- data/lib/dropcaster/log_formatter.rb +10 -0
- data/lib/dropcaster/logging.rb +13 -0
- data/lib/dropcaster/version.rb +3 -1
- data/lib/dropcaster.rb +2 -15
- data/templates/channel.html.erb +1 -1
- data/templates/channel.rss.erb +1 -1
- data/test/Vagrantfile +3 -1
- data/test/bin/vagrant-status +36 -30
- data/test/extensions/windows.rb +3 -1
- data/test/fixtures/extension.MP3 +0 -0
- data/test/fixtures/special &.mp3 +0 -0
- data/test/helper.rb +4 -1
- data/test/unit/test_app.rb +29 -24
- data/test/unit/test_channel.rb +9 -5
- data/test/unit/test_channel_locator.rb +8 -5
- data/test/unit/test_channel_xml.rb +29 -9
- data/test/unit/{test_item.rb → test_itunes_item.rb} +4 -2
- metadata +39 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5e8f2bc56c30e306420ad56a4755769de90292b365a422cd257e11d160bc336d
|
4
|
+
data.tar.gz: 7f4d2fbccd894ef10e6cc212931252ea69b253cf12b22448c4b3ee2e05acdaa9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31ec8e4d767d0e2af69f7975f044c58c4f6aae21f3a708f644f6079a96dc411d74cfeccafd361ab218960c34fb2bd60c794cc0dd65ec3f26cacac6417b249638
|
7
|
+
data.tar.gz: 62a015d29486572e452e16ca302e6d383e71728681699c417269531d57a814bec4e72b19c149bf33ef717f5274dc7497a04976955ecb29a3efc842f0998b4e3d
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 2.5
|
3
|
+
Include:
|
4
|
+
- '**/Gemfile'
|
5
|
+
- '**/Rakefile'
|
6
|
+
- '**/config.ru'
|
7
|
+
- '**/*.rake'
|
8
|
+
Exclude:
|
9
|
+
- vendor/**/*
|
10
|
+
- db/migrations/**/*
|
11
|
+
|
12
|
+
DisplayCopNames:
|
13
|
+
Enabled: true
|
14
|
+
|
15
|
+
DisplayStyleGuide:
|
16
|
+
Enabled: true
|
17
|
+
|
18
|
+
Naming/FileName:
|
19
|
+
Exclude:
|
20
|
+
- Guardfile
|
21
|
+
- Vagrantfile
|
22
|
+
- test/Vagrantfile
|
23
|
+
- Dockerfile
|
24
|
+
|
25
|
+
Metrics/BlockLength:
|
26
|
+
Exclude:
|
27
|
+
- spec/**/*
|
28
|
+
|
29
|
+
Lint/AmbiguousRegexpLiteral:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Lint/HandleExceptions:
|
33
|
+
Enabled: true
|
34
|
+
|
35
|
+
Lint/UnusedBlockArgument:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
Lint/UnusedMethodArgument:
|
39
|
+
Enabled: false
|
40
|
+
|
41
|
+
Metrics/AbcSize:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
Metrics/ClassLength:
|
45
|
+
Enabled: false
|
46
|
+
|
47
|
+
Metrics/CyclomaticComplexity:
|
48
|
+
Max: 12
|
49
|
+
|
50
|
+
Metrics/LineLength:
|
51
|
+
Max: 180
|
52
|
+
|
53
|
+
Metrics/MethodLength:
|
54
|
+
Max: 60
|
55
|
+
|
56
|
+
Metrics/ModuleLength:
|
57
|
+
Enabled: false
|
58
|
+
|
59
|
+
Metrics/ParameterLists:
|
60
|
+
Enabled: false
|
61
|
+
|
62
|
+
Metrics/PerceivedComplexity:
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
Performance/Casecmp:
|
66
|
+
Enabled: false
|
67
|
+
|
68
|
+
Performance/Sample:
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
Style/Alias:
|
72
|
+
EnforcedStyle: prefer_alias_method
|
73
|
+
|
74
|
+
Layout/AlignParameters:
|
75
|
+
Enabled: false
|
76
|
+
|
77
|
+
Style/BlockDelimiters:
|
78
|
+
Enabled: false
|
79
|
+
|
80
|
+
Style/BracesAroundHashParameters:
|
81
|
+
Enabled: false
|
82
|
+
|
83
|
+
Style/ClassAndModuleChildren:
|
84
|
+
Enabled: false
|
85
|
+
|
86
|
+
Layout/ClosingParenthesisIndentation:
|
87
|
+
Enabled: false
|
88
|
+
|
89
|
+
Style/Documentation:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
Layout/DotPosition:
|
93
|
+
EnforcedStyle: trailing
|
94
|
+
|
95
|
+
Style/DoubleNegation:
|
96
|
+
Enabled: false
|
97
|
+
|
98
|
+
Style/EachWithObject:
|
99
|
+
Enabled: false
|
100
|
+
|
101
|
+
Style/FormatString:
|
102
|
+
EnforcedStyle: sprintf
|
103
|
+
|
104
|
+
Style/GuardClause:
|
105
|
+
Enabled: false
|
106
|
+
|
107
|
+
Style/IfUnlessModifier:
|
108
|
+
Enabled: false
|
109
|
+
|
110
|
+
Layout/IndentArray:
|
111
|
+
EnforcedStyle: consistent
|
112
|
+
|
113
|
+
Layout/IndentHash:
|
114
|
+
Enabled: false
|
115
|
+
|
116
|
+
Style/Lambda:
|
117
|
+
Enabled: false
|
118
|
+
|
119
|
+
Style/MultilineBlockChain:
|
120
|
+
Enabled: false
|
121
|
+
|
122
|
+
Layout/MultilineBlockLayout:
|
123
|
+
Enabled: false
|
124
|
+
|
125
|
+
Layout/MultilineOperationIndentation:
|
126
|
+
Enabled: false
|
127
|
+
|
128
|
+
Style/NegatedIf:
|
129
|
+
Enabled: false
|
130
|
+
|
131
|
+
Style/Next:
|
132
|
+
Enabled: false
|
133
|
+
|
134
|
+
Style/NumericLiterals:
|
135
|
+
Enabled: false
|
136
|
+
|
137
|
+
Naming/PredicateName:
|
138
|
+
Enabled: false
|
139
|
+
|
140
|
+
Style/RaiseArgs:
|
141
|
+
EnforcedStyle: compact
|
142
|
+
|
143
|
+
Style/RedundantSelf:
|
144
|
+
Enabled: false
|
145
|
+
|
146
|
+
Style/RescueModifier:
|
147
|
+
Enabled: false
|
148
|
+
|
149
|
+
Style/SignalException:
|
150
|
+
Enabled: false
|
151
|
+
|
152
|
+
Style/SingleLineBlockParams:
|
153
|
+
Enabled: false
|
154
|
+
|
155
|
+
Layout/SpaceAroundEqualsInParameterDefault:
|
156
|
+
EnforcedStyle: no_space
|
157
|
+
|
158
|
+
Style/StructInheritance:
|
159
|
+
Enabled: false
|
160
|
+
|
161
|
+
Style/TrailingCommaInArguments:
|
162
|
+
Enabled: false
|
163
|
+
|
164
|
+
Style/TrailingUnderscoreVariable:
|
165
|
+
Enabled: false
|
166
|
+
|
167
|
+
Style/TrivialAccessors:
|
168
|
+
Enabled: false
|
169
|
+
|
170
|
+
Style/WordArray:
|
171
|
+
Enabled: false
|
172
|
+
|
173
|
+
Style/ZeroLengthPredicate:
|
174
|
+
Enabled: false
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.5.1
|
data/.travis.yml
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
language: ruby
|
2
|
+
|
2
3
|
rvm:
|
3
|
-
- 2.
|
4
|
+
- 2.5.1
|
5
|
+
|
6
|
+
before_install:
|
7
|
+
# https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-377680126
|
8
|
+
- gem install bundler
|
9
|
+
|
4
10
|
script:
|
5
|
-
|
11
|
+
- bundle exec rake
|
12
|
+
- bundle exec rake web:generate
|
13
|
+
|
6
14
|
after_success:
|
7
|
-
|
15
|
+
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
|
16
|
+
website/deploy.sh
|
17
|
+
|
8
18
|
env:
|
9
19
|
global:
|
10
|
-
secure:
|
20
|
+
secure: DInIDj4kbZojS7oTomH5JpuJ7/czBXiYsrFygVz/K/40M+fjVbEzfd03cpPnfUx2vh1vjU/6p5/FpxNEr/ugnv3C+K48pkgvULX+K68mE8k++3heUJfMZf6yjVARJysUKd6n6gcrFDwwnrHJdvG5bzIezO/5YIda+otLViPnFQk=
|
data/Gemfile.lock
CHANGED
@@ -1,72 +1,106 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dropcaster (0.0
|
4
|
+
dropcaster (1.0.0)
|
5
5
|
activesupport
|
6
6
|
bundler
|
7
|
+
nokogiri (~> 1.8.2)
|
8
|
+
null-logger
|
7
9
|
ruby-mp3info
|
8
10
|
|
9
11
|
GEM
|
10
12
|
remote: https://rubygems.org/
|
11
13
|
specs:
|
12
|
-
|
13
|
-
RedCloth (4.2.9-x86-mingw32)
|
14
|
-
activesupport (5.1.1)
|
15
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
activesupport (4.2.10)
|
16
15
|
i18n (~> 0.7)
|
17
16
|
minitest (~> 5.1)
|
17
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
18
18
|
tzinfo (~> 1.1)
|
19
|
-
addressable (2.
|
20
|
-
|
21
|
-
|
22
|
-
byebug (
|
23
|
-
|
24
|
-
fast-stemmer (~> 1.0)
|
25
|
-
coderay (1.1.1)
|
19
|
+
addressable (2.5.2)
|
20
|
+
public_suffix (>= 2.0.2, < 4.0)
|
21
|
+
ast (2.4.0)
|
22
|
+
byebug (10.0.2)
|
23
|
+
coderay (1.1.2)
|
26
24
|
coffee-script (2.4.1)
|
27
25
|
coffee-script-source
|
28
26
|
execjs
|
29
|
-
coffee-script-source (1.
|
30
|
-
colorator (
|
27
|
+
coffee-script-source (1.11.1)
|
28
|
+
colorator (1.1.0)
|
29
|
+
commonmarker (0.17.9)
|
30
|
+
ruby-enum (~> 0.5)
|
31
31
|
concurrent-ruby (1.0.5)
|
32
|
-
|
32
|
+
dnsruby (1.61.1)
|
33
|
+
addressable (~> 2.5)
|
34
|
+
em-websocket (0.5.1)
|
35
|
+
eventmachine (>= 0.12.9)
|
36
|
+
http_parser.rb (~> 0.6.0)
|
37
|
+
ethon (0.11.0)
|
33
38
|
ffi (>= 1.3.0)
|
39
|
+
eventmachine (1.2.7)
|
40
|
+
eventmachine (1.2.7-x86-mingw32)
|
34
41
|
execjs (2.7.0)
|
35
|
-
faraday (0.
|
42
|
+
faraday (0.15.2)
|
36
43
|
multipart-post (>= 1.2, < 3)
|
37
|
-
|
38
|
-
ffi (1.9.
|
39
|
-
ffi (1.9.18-x86-mingw32)
|
44
|
+
ffi (1.9.25)
|
45
|
+
ffi (1.9.25-x86-mingw32)
|
40
46
|
formatador (0.2.5)
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
jekyll
|
47
|
-
jekyll-
|
48
|
-
jekyll-
|
49
|
-
jekyll-
|
50
|
-
jekyll-
|
51
|
-
jekyll-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
47
|
+
forwardable-extended (2.6.0)
|
48
|
+
gemoji (3.0.0)
|
49
|
+
github-pages (188)
|
50
|
+
activesupport (= 4.2.10)
|
51
|
+
github-pages-health-check (= 1.8.1)
|
52
|
+
jekyll (= 3.7.3)
|
53
|
+
jekyll-avatar (= 0.6.0)
|
54
|
+
jekyll-coffeescript (= 1.1.1)
|
55
|
+
jekyll-commonmark-ghpages (= 0.1.5)
|
56
|
+
jekyll-default-layout (= 0.1.4)
|
57
|
+
jekyll-feed (= 0.10.0)
|
58
|
+
jekyll-gist (= 1.5.0)
|
59
|
+
jekyll-github-metadata (= 2.9.4)
|
60
|
+
jekyll-mentions (= 1.4.0)
|
61
|
+
jekyll-optional-front-matter (= 0.3.0)
|
62
|
+
jekyll-paginate (= 1.1.0)
|
63
|
+
jekyll-readme-index (= 0.2.0)
|
64
|
+
jekyll-redirect-from (= 0.14.0)
|
65
|
+
jekyll-relative-links (= 0.5.3)
|
66
|
+
jekyll-remote-theme (= 0.3.1)
|
67
|
+
jekyll-sass-converter (= 1.5.2)
|
68
|
+
jekyll-seo-tag (= 2.5.0)
|
69
|
+
jekyll-sitemap (= 1.2.0)
|
70
|
+
jekyll-swiss (= 0.4.0)
|
71
|
+
jekyll-theme-architect (= 0.1.1)
|
72
|
+
jekyll-theme-cayman (= 0.1.1)
|
73
|
+
jekyll-theme-dinky (= 0.1.1)
|
74
|
+
jekyll-theme-hacker (= 0.1.1)
|
75
|
+
jekyll-theme-leap-day (= 0.1.1)
|
76
|
+
jekyll-theme-merlot (= 0.1.1)
|
77
|
+
jekyll-theme-midnight (= 0.1.1)
|
78
|
+
jekyll-theme-minimal (= 0.1.1)
|
79
|
+
jekyll-theme-modernist (= 0.1.1)
|
80
|
+
jekyll-theme-primer (= 0.5.3)
|
81
|
+
jekyll-theme-slate (= 0.1.1)
|
82
|
+
jekyll-theme-tactile (= 0.1.1)
|
83
|
+
jekyll-theme-time-machine (= 0.1.1)
|
84
|
+
jekyll-titles-from-headings (= 0.5.1)
|
85
|
+
jemoji (= 0.10.0)
|
86
|
+
kramdown (= 1.16.2)
|
87
|
+
liquid (= 4.0.0)
|
88
|
+
listen (= 3.1.5)
|
56
89
|
mercenary (~> 0.3)
|
57
|
-
|
58
|
-
|
59
|
-
|
90
|
+
minima (= 2.5.0)
|
91
|
+
nokogiri (>= 1.8.2, < 2.0)
|
92
|
+
rouge (= 2.2.1)
|
60
93
|
terminal-table (~> 1.4)
|
61
|
-
github-pages-health-check (
|
94
|
+
github-pages-health-check (1.8.1)
|
62
95
|
addressable (~> 2.3)
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
96
|
+
dnsruby (~> 1.60)
|
97
|
+
octokit (~> 4.0)
|
98
|
+
public_suffix (~> 2.0)
|
99
|
+
typhoeus (~> 1.3)
|
100
|
+
guard (2.14.2)
|
67
101
|
formatador (>= 0.2.4)
|
68
102
|
listen (>= 2.7, < 4.0)
|
69
|
-
lumberjack (
|
103
|
+
lumberjack (>= 1.0.12, < 2.0)
|
70
104
|
nenv (~> 0.1)
|
71
105
|
notiffany (~> 0.0)
|
72
106
|
pry (>= 0.9.12)
|
@@ -80,123 +114,199 @@ GEM
|
|
80
114
|
guard-minitest (2.4.6)
|
81
115
|
guard-compat (~> 1.2)
|
82
116
|
minitest (>= 3.0)
|
83
|
-
html-pipeline (
|
117
|
+
html-pipeline (2.8.3)
|
84
118
|
activesupport (>= 2)
|
85
|
-
nokogiri (
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
119
|
+
nokogiri (>= 1.4)
|
120
|
+
http_parser.rb (0.6.0)
|
121
|
+
i18n (0.9.5)
|
122
|
+
concurrent-ruby (~> 1.0)
|
123
|
+
jaro_winkler (1.5.1)
|
124
|
+
jekyll (3.7.3)
|
125
|
+
addressable (~> 2.4)
|
126
|
+
colorator (~> 1.0)
|
127
|
+
em-websocket (~> 0.5)
|
128
|
+
i18n (~> 0.7)
|
93
129
|
jekyll-sass-converter (~> 1.0)
|
94
|
-
jekyll-watch (~>
|
95
|
-
kramdown (~> 1.
|
96
|
-
liquid (~>
|
130
|
+
jekyll-watch (~> 2.0)
|
131
|
+
kramdown (~> 1.14)
|
132
|
+
liquid (~> 4.0)
|
97
133
|
mercenary (~> 0.3.3)
|
98
|
-
|
99
|
-
|
134
|
+
pathutil (~> 0.9)
|
135
|
+
rouge (>= 1.7, < 4)
|
100
136
|
safe_yaml (~> 1.0)
|
101
|
-
|
102
|
-
|
137
|
+
jekyll-avatar (0.6.0)
|
138
|
+
jekyll (~> 3.0)
|
139
|
+
jekyll-coffeescript (1.1.1)
|
103
140
|
coffee-script (~> 2.2)
|
104
|
-
|
105
|
-
jekyll-
|
106
|
-
|
107
|
-
|
108
|
-
|
141
|
+
coffee-script-source (~> 1.11.1)
|
142
|
+
jekyll-commonmark (1.2.0)
|
143
|
+
commonmarker (~> 0.14)
|
144
|
+
jekyll (>= 3.0, < 4.0)
|
145
|
+
jekyll-commonmark-ghpages (0.1.5)
|
146
|
+
commonmarker (~> 0.17.6)
|
147
|
+
jekyll-commonmark (~> 1)
|
148
|
+
rouge (~> 2)
|
149
|
+
jekyll-default-layout (0.1.4)
|
150
|
+
jekyll (~> 3.0)
|
151
|
+
jekyll-feed (0.10.0)
|
152
|
+
jekyll (~> 3.3)
|
153
|
+
jekyll-gist (1.5.0)
|
154
|
+
octokit (~> 4.2)
|
155
|
+
jekyll-github-metadata (2.9.4)
|
156
|
+
jekyll (~> 3.1)
|
157
|
+
octokit (~> 4.0, != 4.4.0)
|
158
|
+
jekyll-mentions (1.4.0)
|
159
|
+
html-pipeline (~> 2.3)
|
160
|
+
jekyll (~> 3.0)
|
161
|
+
jekyll-optional-front-matter (0.3.0)
|
162
|
+
jekyll (~> 3.0)
|
109
163
|
jekyll-paginate (1.1.0)
|
110
|
-
jekyll-
|
111
|
-
jekyll (
|
112
|
-
jekyll-
|
113
|
-
|
114
|
-
jekyll-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
164
|
+
jekyll-readme-index (0.2.0)
|
165
|
+
jekyll (~> 3.0)
|
166
|
+
jekyll-redirect-from (0.14.0)
|
167
|
+
jekyll (~> 3.3)
|
168
|
+
jekyll-relative-links (0.5.3)
|
169
|
+
jekyll (~> 3.3)
|
170
|
+
jekyll-remote-theme (0.3.1)
|
171
|
+
jekyll (~> 3.5)
|
172
|
+
rubyzip (>= 1.2.1, < 3.0)
|
173
|
+
jekyll-sass-converter (1.5.2)
|
174
|
+
sass (~> 3.4)
|
175
|
+
jekyll-seo-tag (2.5.0)
|
176
|
+
jekyll (~> 3.3)
|
177
|
+
jekyll-sitemap (1.2.0)
|
178
|
+
jekyll (~> 3.3)
|
179
|
+
jekyll-swiss (0.4.0)
|
180
|
+
jekyll-theme-architect (0.1.1)
|
181
|
+
jekyll (~> 3.5)
|
182
|
+
jekyll-seo-tag (~> 2.0)
|
183
|
+
jekyll-theme-cayman (0.1.1)
|
184
|
+
jekyll (~> 3.5)
|
185
|
+
jekyll-seo-tag (~> 2.0)
|
186
|
+
jekyll-theme-dinky (0.1.1)
|
187
|
+
jekyll (~> 3.5)
|
188
|
+
jekyll-seo-tag (~> 2.0)
|
189
|
+
jekyll-theme-hacker (0.1.1)
|
190
|
+
jekyll (~> 3.5)
|
191
|
+
jekyll-seo-tag (~> 2.0)
|
192
|
+
jekyll-theme-leap-day (0.1.1)
|
193
|
+
jekyll (~> 3.5)
|
194
|
+
jekyll-seo-tag (~> 2.0)
|
195
|
+
jekyll-theme-merlot (0.1.1)
|
196
|
+
jekyll (~> 3.5)
|
197
|
+
jekyll-seo-tag (~> 2.0)
|
198
|
+
jekyll-theme-midnight (0.1.1)
|
199
|
+
jekyll (~> 3.5)
|
200
|
+
jekyll-seo-tag (~> 2.0)
|
201
|
+
jekyll-theme-minimal (0.1.1)
|
202
|
+
jekyll (~> 3.5)
|
203
|
+
jekyll-seo-tag (~> 2.0)
|
204
|
+
jekyll-theme-modernist (0.1.1)
|
205
|
+
jekyll (~> 3.5)
|
206
|
+
jekyll-seo-tag (~> 2.0)
|
207
|
+
jekyll-theme-primer (0.5.3)
|
208
|
+
jekyll (~> 3.5)
|
209
|
+
jekyll-github-metadata (~> 2.9)
|
210
|
+
jekyll-seo-tag (~> 2.0)
|
211
|
+
jekyll-theme-slate (0.1.1)
|
212
|
+
jekyll (~> 3.5)
|
213
|
+
jekyll-seo-tag (~> 2.0)
|
214
|
+
jekyll-theme-tactile (0.1.1)
|
215
|
+
jekyll (~> 3.5)
|
216
|
+
jekyll-seo-tag (~> 2.0)
|
217
|
+
jekyll-theme-time-machine (0.1.1)
|
218
|
+
jekyll (~> 3.5)
|
219
|
+
jekyll-seo-tag (~> 2.0)
|
220
|
+
jekyll-titles-from-headings (0.5.1)
|
221
|
+
jekyll (~> 3.3)
|
222
|
+
jekyll-watch (2.0.0)
|
223
|
+
listen (~> 3.0)
|
224
|
+
jemoji (0.10.0)
|
225
|
+
gemoji (~> 3.0)
|
226
|
+
html-pipeline (~> 2.2)
|
227
|
+
jekyll (~> 3.0)
|
228
|
+
kramdown (1.16.2)
|
229
|
+
libnotify (0.9.4)
|
123
230
|
ffi (>= 1.0.11)
|
124
|
-
libxml-ruby (3.
|
125
|
-
liquid (
|
126
|
-
listen (3.
|
231
|
+
libxml-ruby (3.1.0)
|
232
|
+
liquid (4.0.0)
|
233
|
+
listen (3.1.5)
|
127
234
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
128
235
|
rb-inotify (~> 0.9, >= 0.9.7)
|
129
|
-
|
130
|
-
|
236
|
+
ruby_dep (~> 1.2)
|
237
|
+
lumberjack (1.0.13)
|
131
238
|
mercenary (0.3.6)
|
132
|
-
method_source (0.
|
133
|
-
mini_portile2 (2.
|
134
|
-
|
239
|
+
method_source (0.9.0)
|
240
|
+
mini_portile2 (2.3.0)
|
241
|
+
minima (2.5.0)
|
242
|
+
jekyll (~> 3.5)
|
243
|
+
jekyll-feed (~> 0.9)
|
244
|
+
jekyll-seo-tag (~> 2.1)
|
245
|
+
minitest (5.11.3)
|
135
246
|
multipart-post (2.0.0)
|
136
247
|
nenv (0.3.0)
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
mini_portile2 (~> 2.1.0)
|
248
|
+
nokogiri (1.8.4)
|
249
|
+
mini_portile2 (~> 2.3.0)
|
250
|
+
nokogiri (1.8.4-x86-mingw32)
|
251
|
+
mini_portile2 (~> 2.3.0)
|
142
252
|
notiffany (0.1.1)
|
143
253
|
nenv (~> 0.1)
|
144
254
|
shellany (~> 0.0)
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
255
|
+
null-logger (0.1.5)
|
256
|
+
octokit (4.9.0)
|
257
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
258
|
+
parallel (1.12.1)
|
259
|
+
parser (2.5.1.2)
|
260
|
+
ast (~> 2.4.0)
|
261
|
+
pathutil (0.16.1)
|
262
|
+
forwardable-extended (~> 2.6)
|
263
|
+
powerpack (0.1.2)
|
264
|
+
pry (0.11.3)
|
154
265
|
coderay (~> 1.1.0)
|
155
|
-
method_source (~> 0.
|
156
|
-
|
157
|
-
|
158
|
-
byebug (~> 9.0)
|
266
|
+
method_source (~> 0.9.0)
|
267
|
+
pry-byebug (3.6.0)
|
268
|
+
byebug (~> 10.0)
|
159
269
|
pry (~> 0.10)
|
160
|
-
public_suffix (
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
rdiscount (2.1.7)
|
172
|
-
redcarpet (3.3.2)
|
173
|
-
rubocop (0.48.1)
|
174
|
-
parser (>= 2.3.3.1, < 3.0)
|
270
|
+
public_suffix (2.0.5)
|
271
|
+
rainbow (3.0.0)
|
272
|
+
rake (12.3.1)
|
273
|
+
rb-fsevent (0.10.3)
|
274
|
+
rb-inotify (0.9.10)
|
275
|
+
ffi (>= 0.5.0, < 2)
|
276
|
+
rouge (2.2.1)
|
277
|
+
rubocop (0.58.1)
|
278
|
+
jaro_winkler (~> 1.5.1)
|
279
|
+
parallel (~> 1.10)
|
280
|
+
parser (>= 2.5, != 2.5.1.1)
|
175
281
|
powerpack (~> 0.1)
|
176
|
-
rainbow (>=
|
282
|
+
rainbow (>= 2.2.2, < 4.0)
|
177
283
|
ruby-progressbar (~> 1.7)
|
178
284
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
285
|
+
ruby-enum (0.7.2)
|
286
|
+
i18n
|
179
287
|
ruby-mp3info (0.8.10)
|
180
|
-
ruby-progressbar (1.
|
288
|
+
ruby-progressbar (1.9.0)
|
289
|
+
ruby_dep (1.5.0)
|
290
|
+
rubyzip (1.2.1)
|
181
291
|
safe_yaml (1.0.4)
|
182
|
-
sass (3.
|
183
|
-
|
184
|
-
|
185
|
-
|
292
|
+
sass (3.5.6)
|
293
|
+
sass-listen (~> 4.0.0)
|
294
|
+
sass-listen (4.0.0)
|
295
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
296
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
297
|
+
sawyer (0.8.1)
|
298
|
+
addressable (>= 2.3.5, < 2.6)
|
299
|
+
faraday (~> 0.8, < 1.0)
|
186
300
|
shellany (0.0.1)
|
187
|
-
slop (3.6.0)
|
188
301
|
terminal-table (1.8.0)
|
189
302
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
190
|
-
thor (0.
|
303
|
+
thor (0.20.0)
|
191
304
|
thread_safe (0.3.6)
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
ethon (>= 0.8.0)
|
196
|
-
tzinfo (1.2.3)
|
305
|
+
typhoeus (1.3.0)
|
306
|
+
ethon (>= 0.9.0)
|
307
|
+
tzinfo (1.2.5)
|
197
308
|
thread_safe (~> 0.1)
|
198
|
-
unicode-display_width (1.
|
199
|
-
yajl-ruby (1.2.2)
|
309
|
+
unicode-display_width (1.4.0)
|
200
310
|
|
201
311
|
PLATFORMS
|
202
312
|
ruby
|
@@ -216,8 +326,7 @@ DEPENDENCIES
|
|
216
326
|
rake
|
217
327
|
rb-fsevent
|
218
328
|
rb-inotify
|
219
|
-
rb-readline
|
220
329
|
rubocop
|
221
330
|
|
222
331
|
BUNDLED WITH
|
223
|
-
1.
|
332
|
+
1.16.2
|
data/Guardfile
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
guard 'bundler' do
|
2
4
|
watch('Gemfile')
|
3
|
-
watch(
|
5
|
+
watch(/^.*\.gemspec/)
|
4
6
|
end
|
5
7
|
|
6
8
|
guard 'minitest' do
|
7
|
-
watch(%r
|
8
|
-
watch(%r
|
9
|
-
watch(%r
|
10
|
-
watch(%r{^lib/.*/([^/]+)\.rb$}){|m| "test/unit/test_#{m[1]}.rb"}
|
11
|
-
watch(%r
|
9
|
+
watch(%r{^test/unit/test_(.*)\.rb})
|
10
|
+
watch(%r{^lib/*\.rb}) { 'test/unit' }
|
11
|
+
watch(%r{^lib/.*/*\.rb}) { 'test/unit' }
|
12
|
+
watch(%r{^lib/.*/([^/]+)\.rb$}) { |m| "test/unit/test_#{m[1]}.rb" }
|
13
|
+
watch(%r{^test/helper\.rb}) { 'test/unit' }
|
12
14
|
end
|