rails_table_for 0.2.2 → 0.4.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
  SHA256:
3
- metadata.gz: 155237f1a1d730b42f5163e83f94f851b333abb4629337028eb46921fdb803ea
4
- data.tar.gz: de618efd0f8849900c52e83db411a7960c12039cfc9e1e5437cc427e4cee7a44
3
+ metadata.gz: 17aa0bfba6fcbc0bd654563d1ade26ccae6bccce2b3d3eef17fcebb0700fa07b
4
+ data.tar.gz: 4d9cb78f6615c22cee8749569d3d3672e3d815a845cb1eb059b77bce95cff8c7
5
5
  SHA512:
6
- metadata.gz: a936961884260f6ffed048e9838fa08b1b089903b5a8d6e81618076215452579e73400025f863ca97aebc3c95669eda880ede96e209b62d91cde3b93ceae4073
7
- data.tar.gz: 23f1e6a33f112248ca84233af07fcdc815857e348b86a1183cb5bc72b332ae295da34ce229fca428eae3000625cc380b7d541eeb6576c2c5c681a42e35043e47
6
+ metadata.gz: '09f28a86696b672b0dd76e428fd93bfe5fb467aa49947d346536b5a60fe34912100c18947d6fd89ab1556a56b3ac7d9a45031eb4c66376c67b04e6234c9f071d'
7
+ data.tar.gz: b2d00a69c94bdd3ddc12fdc8bf3fdee71377b5d2401a9600f72bf9d62e5cc3594f6dad525e083b3d1b9463c9877f797571f1155013f6c4d79b9f58d65eae061b
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: request
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -1,4 +1,4 @@
1
- name: Tests
1
+ name: Build & Test
2
2
 
3
3
  on:
4
4
  push:
@@ -7,7 +7,7 @@ on:
7
7
  branches: [ master ]
8
8
 
9
9
  jobs:
10
- run_minitest:
10
+ build_and_test:
11
11
 
12
12
  runs-on: ubuntu-latest
13
13
 
@@ -18,10 +18,12 @@ jobs:
18
18
  with:
19
19
  ruby-version: 2.6.x
20
20
  - name: Install libsqlite3-dev
21
- run: |
22
- sudo apt-get install -y libsqlite3-dev
23
- - name: Build and test
21
+ run: sudo apt-get install -y libsqlite3-dev
22
+ - name: Build
24
23
  run: |
25
24
  gem install bundler
26
25
  bundle install --jobs 4 --retry 3
27
- bundle exec rake
26
+ - name: Rubocop
27
+ run: bundle exec rake rubocop
28
+ - name: Test
29
+ run: bundle exec rake
@@ -0,0 +1,47 @@
1
+ AllCops:
2
+ Include:
3
+ - '**/Gemfile'
4
+ - 'lib/**/*.rb'
5
+ - 'test/**/*.rb'
6
+ Exclude:
7
+ - 'test/dummy/bin/*'
8
+ - 'test/dummy/db/schema.rb'
9
+
10
+ Style/Documentation:
11
+ Enabled: false
12
+
13
+ Layout/LineLength:
14
+ Max: 100
15
+ Exclude:
16
+ - 'test/elements/table_test.rb'
17
+
18
+ Style/HashEachMethods:
19
+ Enabled: true
20
+
21
+ Style/HashTransformKeys:
22
+ Enabled: true
23
+
24
+ Style/HashTransformValues:
25
+ Enabled: true
26
+
27
+ Layout/EmptyLinesAroundAttributeAccessor:
28
+ Enabled: true
29
+
30
+ Layout/SpaceAroundMethodCallOperator:
31
+ Enabled: true
32
+
33
+ Lint/DeprecatedOpenSSLConstant:
34
+ Enabled: true
35
+
36
+ Lint/RaiseException:
37
+ Enabled: true
38
+
39
+ Lint/StructNewOverride:
40
+ Enabled: true
41
+
42
+ Style/ExponentialNotation:
43
+ Enabled: true
44
+
45
+ Style/SlicingWithRange:
46
+ Enabled: true
47
+
@@ -1,8 +1,21 @@
1
1
  # CHANGELOG
2
2
  ## Master
3
3
 
4
+ ## 0.3.2
5
+ - Security updates
6
+
7
+ ## 0.3.1
8
+ - Security updates
9
+ - Documentation updates
10
+
11
+ ---
12
+ ## 0.3.0
13
+
14
+ ### Features:
15
+ - Pagination: [#3](https://github.com/acroos/rails_table_for/issues/3)
16
+
4
17
  ---
5
18
  ## 0.2.2
6
19
 
7
20
  ### Bugs Fixed:
8
- - `table_for` method was nested, resulting in initial load rendering "table_for" as text
21
+ - `table_for` method was nested, resulting in initial load rendering "table_for" as text
data/Gemfile CHANGED
@@ -1,6 +1,8 @@
1
- source "https://rubygems.org"
1
+ # frozen_string_literal: true
2
2
 
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
3
+ source 'https://rubygems.org'
4
+
5
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
6
 
5
7
  # Specify your gem's dependencies in rails_table_for.gemspec
6
8
  gemspec
@@ -1,78 +1,83 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_table_for (0.2.2)
4
+ rails_table_for (0.4.0)
5
5
  rails (>= 5)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (6.0.2.2)
11
- actionpack (= 6.0.2.2)
10
+ actioncable (6.1.0)
11
+ actionpack (= 6.1.0)
12
+ activesupport (= 6.1.0)
12
13
  nio4r (~> 2.0)
13
14
  websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.2.2)
15
- actionpack (= 6.0.2.2)
16
- activejob (= 6.0.2.2)
17
- activerecord (= 6.0.2.2)
18
- activestorage (= 6.0.2.2)
19
- activesupport (= 6.0.2.2)
15
+ actionmailbox (6.1.0)
16
+ actionpack (= 6.1.0)
17
+ activejob (= 6.1.0)
18
+ activerecord (= 6.1.0)
19
+ activestorage (= 6.1.0)
20
+ activesupport (= 6.1.0)
20
21
  mail (>= 2.7.1)
21
- actionmailer (6.0.2.2)
22
- actionpack (= 6.0.2.2)
23
- actionview (= 6.0.2.2)
24
- activejob (= 6.0.2.2)
22
+ actionmailer (6.1.0)
23
+ actionpack (= 6.1.0)
24
+ actionview (= 6.1.0)
25
+ activejob (= 6.1.0)
26
+ activesupport (= 6.1.0)
25
27
  mail (~> 2.5, >= 2.5.4)
26
28
  rails-dom-testing (~> 2.0)
27
- actionpack (6.0.2.2)
28
- actionview (= 6.0.2.2)
29
- activesupport (= 6.0.2.2)
30
- rack (~> 2.0, >= 2.0.8)
29
+ actionpack (6.1.0)
30
+ actionview (= 6.1.0)
31
+ activesupport (= 6.1.0)
32
+ rack (~> 2.0, >= 2.0.9)
31
33
  rack-test (>= 0.6.3)
32
34
  rails-dom-testing (~> 2.0)
33
35
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
- actiontext (6.0.2.2)
35
- actionpack (= 6.0.2.2)
36
- activerecord (= 6.0.2.2)
37
- activestorage (= 6.0.2.2)
38
- activesupport (= 6.0.2.2)
36
+ actiontext (6.1.0)
37
+ actionpack (= 6.1.0)
38
+ activerecord (= 6.1.0)
39
+ activestorage (= 6.1.0)
40
+ activesupport (= 6.1.0)
39
41
  nokogiri (>= 1.8.5)
40
- actionview (6.0.2.2)
41
- activesupport (= 6.0.2.2)
42
+ actionview (6.1.0)
43
+ activesupport (= 6.1.0)
42
44
  builder (~> 3.1)
43
45
  erubi (~> 1.4)
44
46
  rails-dom-testing (~> 2.0)
45
47
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
- activejob (6.0.2.2)
47
- activesupport (= 6.0.2.2)
48
+ activejob (6.1.0)
49
+ activesupport (= 6.1.0)
48
50
  globalid (>= 0.3.6)
49
- activemodel (6.0.2.2)
50
- activesupport (= 6.0.2.2)
51
- activerecord (6.0.2.2)
52
- activemodel (= 6.0.2.2)
53
- activesupport (= 6.0.2.2)
54
- activestorage (6.0.2.2)
55
- actionpack (= 6.0.2.2)
56
- activejob (= 6.0.2.2)
57
- activerecord (= 6.0.2.2)
51
+ activemodel (6.1.0)
52
+ activesupport (= 6.1.0)
53
+ activerecord (6.1.0)
54
+ activemodel (= 6.1.0)
55
+ activesupport (= 6.1.0)
56
+ activestorage (6.1.0)
57
+ actionpack (= 6.1.0)
58
+ activejob (= 6.1.0)
59
+ activerecord (= 6.1.0)
60
+ activesupport (= 6.1.0)
58
61
  marcel (~> 0.3.1)
59
- activesupport (6.0.2.2)
62
+ mimemagic (~> 0.3.2)
63
+ activesupport (6.1.0)
60
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
61
- i18n (>= 0.7, < 2)
62
- minitest (~> 5.1)
63
- tzinfo (~> 1.1)
64
- zeitwerk (~> 2.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ ast (2.4.1)
65
70
  builder (3.2.4)
66
- bump (0.9.0)
67
- byebug (11.1.1)
68
- concurrent-ruby (1.1.6)
71
+ bump (0.10.0)
72
+ byebug (11.1.3)
73
+ concurrent-ruby (1.1.7)
69
74
  crass (1.0.6)
70
- erubi (1.9.0)
75
+ erubi (1.10.0)
71
76
  globalid (0.4.2)
72
77
  activesupport (>= 4.2.0)
73
- i18n (1.8.2)
78
+ i18n (1.8.7)
74
79
  concurrent-ruby (~> 1.0)
75
- loofah (2.4.0)
80
+ loofah (2.8.0)
76
81
  crass (~> 1.0.2)
77
82
  nokogiri (>= 1.5.9)
78
83
  mail (2.7.1)
@@ -80,59 +85,79 @@ GEM
80
85
  marcel (0.3.3)
81
86
  mimemagic (~> 0.3.2)
82
87
  method_source (1.0.0)
83
- mimemagic (0.3.4)
88
+ mimemagic (0.3.5)
84
89
  mini_mime (1.0.2)
85
- mini_portile2 (2.4.0)
86
- minitest (5.14.0)
87
- nio4r (2.5.2)
88
- nokogiri (1.10.9)
89
- mini_portile2 (~> 2.4.0)
90
- rack (2.2.2)
90
+ mini_portile2 (2.5.0)
91
+ minitest (5.14.3)
92
+ nio4r (2.5.4)
93
+ nokogiri (1.11.1)
94
+ mini_portile2 (~> 2.5.0)
95
+ racc (~> 1.4)
96
+ parallel (1.20.1)
97
+ parser (3.0.0.0)
98
+ ast (~> 2.4.1)
99
+ racc (1.5.2)
100
+ rack (2.2.3)
91
101
  rack-test (1.1.0)
92
102
  rack (>= 1.0, < 3)
93
- rails (6.0.2.2)
94
- actioncable (= 6.0.2.2)
95
- actionmailbox (= 6.0.2.2)
96
- actionmailer (= 6.0.2.2)
97
- actionpack (= 6.0.2.2)
98
- actiontext (= 6.0.2.2)
99
- actionview (= 6.0.2.2)
100
- activejob (= 6.0.2.2)
101
- activemodel (= 6.0.2.2)
102
- activerecord (= 6.0.2.2)
103
- activestorage (= 6.0.2.2)
104
- activesupport (= 6.0.2.2)
105
- bundler (>= 1.3.0)
106
- railties (= 6.0.2.2)
103
+ rails (6.1.0)
104
+ actioncable (= 6.1.0)
105
+ actionmailbox (= 6.1.0)
106
+ actionmailer (= 6.1.0)
107
+ actionpack (= 6.1.0)
108
+ actiontext (= 6.1.0)
109
+ actionview (= 6.1.0)
110
+ activejob (= 6.1.0)
111
+ activemodel (= 6.1.0)
112
+ activerecord (= 6.1.0)
113
+ activestorage (= 6.1.0)
114
+ activesupport (= 6.1.0)
115
+ bundler (>= 1.15.0)
116
+ railties (= 6.1.0)
107
117
  sprockets-rails (>= 2.0.0)
108
118
  rails-dom-testing (2.0.3)
109
119
  activesupport (>= 4.2.0)
110
120
  nokogiri (>= 1.6)
111
121
  rails-html-sanitizer (1.3.0)
112
122
  loofah (~> 2.3)
113
- railties (6.0.2.2)
114
- actionpack (= 6.0.2.2)
115
- activesupport (= 6.0.2.2)
123
+ railties (6.1.0)
124
+ actionpack (= 6.1.0)
125
+ activesupport (= 6.1.0)
116
126
  method_source
117
127
  rake (>= 0.8.7)
118
- thor (>= 0.20.3, < 2.0)
119
- rake (13.0.1)
120
- sprockets (4.0.0)
128
+ thor (~> 1.0)
129
+ rainbow (3.0.0)
130
+ rake (13.0.3)
131
+ regexp_parser (2.0.3)
132
+ rexml (3.2.4)
133
+ rubocop (0.93.1)
134
+ parallel (~> 1.10)
135
+ parser (>= 2.7.1.5)
136
+ rainbow (>= 2.2.2, < 4.0)
137
+ regexp_parser (>= 1.8)
138
+ rexml
139
+ rubocop-ast (>= 0.6.0)
140
+ ruby-progressbar (~> 1.7)
141
+ unicode-display_width (>= 1.4.0, < 2.0)
142
+ rubocop-ast (1.4.0)
143
+ parser (>= 2.7.1.5)
144
+ ruby-progressbar (1.11.0)
145
+ sprockets (4.0.2)
121
146
  concurrent-ruby (~> 1.0)
122
147
  rack (> 1, < 3)
123
- sprockets-rails (3.2.1)
148
+ sprockets-rails (3.2.2)
124
149
  actionpack (>= 4.0)
125
150
  activesupport (>= 4.0)
126
151
  sprockets (>= 3.0.0)
127
152
  sqlite3 (1.4.2)
128
153
  thor (1.0.1)
129
- thread_safe (0.3.6)
130
- tzinfo (1.2.6)
131
- thread_safe (~> 0.1)
132
- websocket-driver (0.7.1)
154
+ tzinfo (2.0.4)
155
+ concurrent-ruby (~> 1.0)
156
+ unicode-display_width (1.7.0)
157
+ websocket-driver (0.7.3)
133
158
  websocket-extensions (>= 0.1.0)
134
- websocket-extensions (0.1.4)
135
- zeitwerk (2.3.0)
159
+ websocket-extensions (0.1.5)
160
+ zeitwerk (2.4.2)
136
161
 
137
162
  PLATFORMS
138
163
  ruby
@@ -145,6 +170,7 @@ DEPENDENCIES
145
170
  nokogiri (~> 1.10, >= 1.10.9)
146
171
  rails_table_for!
147
172
  rake (~> 13.0, >= 13.0.1)
173
+ rubocop (~> 0.80, >= 0.80.1)
148
174
  sqlite3 (~> 1.4, >= 1.4.2)
149
175
 
150
176
  BUNDLED WITH
data/Rakefile CHANGED
@@ -24,4 +24,9 @@ Rake::TestTask.new(:test) do |t|
24
24
  t.verbose = false
25
25
  end
26
26
 
27
+ require 'rubocop/rake_task'
28
+
29
+ desc 'Run RuboCop on the lib directory'
30
+ RuboCop::RakeTask.new
31
+
27
32
  task default: :test
data/bin/test CHANGED
@@ -1,5 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
- $: << File.expand_path("../test", __dir__)
2
+ # frozen_string_literal: true
3
3
 
4
- require "bundler/setup"
5
- require "rails/plugin/test"
4
+ $LOAD_PATH << File.expand_path('../test', __dir__)
5
+
6
+ require 'bundler/setup'
7
+ require 'rails/plugin/test'
@@ -1,16 +1,17 @@
1
- source "https://rubygems.org"
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
2
4
 
3
5
  group :jekyll_plugins do
4
- gem "github-pages", "~> 204"
6
+ gem 'github-pages', '~> 209'
5
7
  end
6
8
 
7
9
  # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
8
10
  # and associated library.
9
- install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
10
- gem "tzinfo", "~> 1.2"
11
- gem "tzinfo-data"
11
+ install_if -> { RUBY_PLATFORM =~ /mingw|mswin|java/ } do
12
+ gem 'tzinfo', '~> 1.2'
13
+ gem 'tzinfo-data'
12
14
  end
13
15
 
14
16
  # Performance-booster for watching directories on Windows
15
- gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
16
-
17
+ gem 'wdm', '~> 0.1.0', install_if: Gem.win_platform?
@@ -1,12 +1,12 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- activesupport (6.0.2.2)
4
+ activesupport (6.0.3.4)
5
5
  concurrent-ruby (~> 1.0, >= 1.0.2)
6
6
  i18n (>= 0.7, < 2)
7
7
  minitest (~> 5.1)
8
8
  tzinfo (~> 1.1)
9
- zeitwerk (~> 2.2)
9
+ zeitwerk (~> 2.2, >= 2.2.2)
10
10
  addressable (2.7.0)
11
11
  public_suffix (>= 2.0.2, < 5.0)
12
12
  coffee-script (2.4.1)
@@ -16,38 +16,41 @@ GEM
16
16
  colorator (1.1.0)
17
17
  commonmarker (0.17.13)
18
18
  ruby-enum (~> 0.5)
19
- concurrent-ruby (1.1.6)
20
- dnsruby (1.61.3)
21
- addressable (~> 2.5)
22
- em-websocket (0.5.1)
19
+ concurrent-ruby (1.1.7)
20
+ dnsruby (1.61.5)
21
+ simpleidn (~> 0.1)
22
+ em-websocket (0.5.2)
23
23
  eventmachine (>= 0.12.9)
24
24
  http_parser.rb (~> 0.6.0)
25
25
  ethon (0.12.0)
26
26
  ffi (>= 1.3.0)
27
27
  eventmachine (1.2.7)
28
28
  execjs (2.7.0)
29
- faraday (1.0.0)
29
+ faraday (1.3.0)
30
+ faraday-net_http (~> 1.0)
30
31
  multipart-post (>= 1.2, < 3)
31
- ffi (1.12.2)
32
+ ruby2_keywords
33
+ faraday-net_http (1.0.0)
34
+ ffi (1.14.2)
32
35
  forwardable-extended (2.6.0)
33
36
  gemoji (3.0.1)
34
- github-pages (204)
37
+ github-pages (209)
35
38
  github-pages-health-check (= 1.16.1)
36
- jekyll (= 3.8.5)
39
+ jekyll (= 3.9.0)
37
40
  jekyll-avatar (= 0.7.0)
38
41
  jekyll-coffeescript (= 1.1.1)
39
42
  jekyll-commonmark-ghpages (= 0.1.6)
40
43
  jekyll-default-layout (= 0.1.4)
41
- jekyll-feed (= 0.13.0)
44
+ jekyll-feed (= 0.15.1)
42
45
  jekyll-gist (= 1.5.0)
43
46
  jekyll-github-metadata (= 2.13.0)
44
- jekyll-mentions (= 1.5.1)
47
+ jekyll-mentions (= 1.6.0)
45
48
  jekyll-optional-front-matter (= 0.3.2)
46
49
  jekyll-paginate (= 1.1.0)
47
50
  jekyll-readme-index (= 0.3.0)
48
- jekyll-redirect-from (= 0.15.0)
51
+ jekyll-redirect-from (= 0.16.0)
49
52
  jekyll-relative-links (= 0.6.1)
50
- jekyll-remote-theme (= 0.4.1)
53
+ jekyll-remote-theme (= 0.4.2)
51
54
  jekyll-sass-converter (= 1.5.2)
52
55
  jekyll-seo-tag (= 2.6.1)
53
56
  jekyll-sitemap (= 1.4.0)
@@ -55,7 +58,7 @@ GEM
55
58
  jekyll-theme-architect (= 0.1.1)
56
59
  jekyll-theme-cayman (= 0.1.1)
57
60
  jekyll-theme-dinky (= 0.1.1)
58
- jekyll-theme-hacker (= 0.1.1)
61
+ jekyll-theme-hacker (= 0.1.2)
59
62
  jekyll-theme-leap-day (= 0.1.1)
60
63
  jekyll-theme-merlot (= 0.1.1)
61
64
  jekyll-theme-midnight (= 0.1.1)
@@ -66,13 +69,14 @@ GEM
66
69
  jekyll-theme-tactile (= 0.1.1)
67
70
  jekyll-theme-time-machine (= 0.1.1)
68
71
  jekyll-titles-from-headings (= 0.5.3)
69
- jemoji (= 0.11.1)
70
- kramdown (= 1.17.0)
72
+ jemoji (= 0.12.0)
73
+ kramdown (= 2.3.0)
74
+ kramdown-parser-gfm (= 1.1.0)
71
75
  liquid (= 4.0.3)
72
76
  mercenary (~> 0.3)
73
77
  minima (= 2.5.1)
74
78
  nokogiri (>= 1.10.4, < 2.0)
75
- rouge (= 3.13.0)
79
+ rouge (= 3.23.0)
76
80
  terminal-table (~> 1.4)
77
81
  github-pages-health-check (1.16.1)
78
82
  addressable (~> 2.3)
@@ -80,20 +84,20 @@ GEM
80
84
  octokit (~> 4.0)
81
85
  public_suffix (~> 3.0)
82
86
  typhoeus (~> 1.3)
83
- html-pipeline (2.12.3)
87
+ html-pipeline (2.14.0)
84
88
  activesupport (>= 2)
85
89
  nokogiri (>= 1.4)
86
90
  http_parser.rb (0.6.0)
87
91
  i18n (0.9.5)
88
92
  concurrent-ruby (~> 1.0)
89
- jekyll (3.8.5)
93
+ jekyll (3.9.0)
90
94
  addressable (~> 2.4)
91
95
  colorator (~> 1.0)
92
96
  em-websocket (~> 0.5)
93
97
  i18n (~> 0.7)
94
98
  jekyll-sass-converter (~> 1.0)
95
99
  jekyll-watch (~> 2.0)
96
- kramdown (~> 1.14)
100
+ kramdown (>= 1.17, < 3)
97
101
  liquid (~> 4.0)
98
102
  mercenary (~> 0.3.3)
99
103
  pathutil (~> 0.9)
@@ -113,14 +117,14 @@ GEM
113
117
  rouge (>= 2.0, < 4.0)
114
118
  jekyll-default-layout (0.1.4)
115
119
  jekyll (~> 3.0)
116
- jekyll-feed (0.13.0)
120
+ jekyll-feed (0.15.1)
117
121
  jekyll (>= 3.7, < 5.0)
118
122
  jekyll-gist (1.5.0)
119
123
  octokit (~> 4.2)
120
124
  jekyll-github-metadata (2.13.0)
121
125
  jekyll (>= 3.4, < 5.0)
122
126
  octokit (~> 4.0, != 4.4.0)
123
- jekyll-mentions (1.5.1)
127
+ jekyll-mentions (1.6.0)
124
128
  html-pipeline (~> 2.3)
125
129
  jekyll (>= 3.7, < 5.0)
126
130
  jekyll-optional-front-matter (0.3.2)
@@ -128,14 +132,15 @@ GEM
128
132
  jekyll-paginate (1.1.0)
129
133
  jekyll-readme-index (0.3.0)
130
134
  jekyll (>= 3.0, < 5.0)
131
- jekyll-redirect-from (0.15.0)
135
+ jekyll-redirect-from (0.16.0)
132
136
  jekyll (>= 3.3, < 5.0)
133
137
  jekyll-relative-links (0.6.1)
134
138
  jekyll (>= 3.3, < 5.0)
135
- jekyll-remote-theme (0.4.1)
139
+ jekyll-remote-theme (0.4.2)
136
140
  addressable (~> 2.0)
137
141
  jekyll (>= 3.5, < 5.0)
138
- rubyzip (>= 1.3.0)
142
+ jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
143
+ rubyzip (>= 1.3.0, < 3.0)
139
144
  jekyll-sass-converter (1.5.2)
140
145
  sass (~> 3.4)
141
146
  jekyll-seo-tag (2.6.1)
@@ -152,8 +157,8 @@ GEM
152
157
  jekyll-theme-dinky (0.1.1)
153
158
  jekyll (~> 3.5)
154
159
  jekyll-seo-tag (~> 2.0)
155
- jekyll-theme-hacker (0.1.1)
156
- jekyll (~> 3.5)
160
+ jekyll-theme-hacker (0.1.2)
161
+ jekyll (> 3.5, < 5.0)
157
162
  jekyll-seo-tag (~> 2.0)
158
163
  jekyll-theme-leap-day (0.1.1)
159
164
  jekyll (~> 3.5)
@@ -187,37 +192,44 @@ GEM
187
192
  jekyll (>= 3.3, < 5.0)
188
193
  jekyll-watch (2.2.1)
189
194
  listen (~> 3.0)
190
- jemoji (0.11.1)
195
+ jemoji (0.12.0)
191
196
  gemoji (~> 3.0)
192
197
  html-pipeline (~> 2.2)
193
198
  jekyll (>= 3.0, < 5.0)
194
- kramdown (1.17.0)
199
+ kramdown (2.3.0)
200
+ rexml
201
+ kramdown-parser-gfm (1.1.0)
202
+ kramdown (~> 2.0)
195
203
  liquid (4.0.3)
196
- listen (3.2.1)
204
+ listen (3.4.0)
197
205
  rb-fsevent (~> 0.10, >= 0.10.3)
198
206
  rb-inotify (~> 0.9, >= 0.9.10)
199
207
  mercenary (0.3.6)
200
- mini_portile2 (2.4.0)
208
+ mini_portile2 (2.5.0)
201
209
  minima (2.5.1)
202
210
  jekyll (>= 3.5, < 5.0)
203
211
  jekyll-feed (~> 0.9)
204
212
  jekyll-seo-tag (~> 2.1)
205
- minitest (5.14.0)
213
+ minitest (5.14.3)
206
214
  multipart-post (2.1.1)
207
- nokogiri (1.10.9)
208
- mini_portile2 (~> 2.4.0)
209
- octokit (4.17.0)
215
+ nokogiri (1.11.1)
216
+ mini_portile2 (~> 2.5.0)
217
+ racc (~> 1.4)
218
+ octokit (4.20.0)
210
219
  faraday (>= 0.9)
211
220
  sawyer (~> 0.8.0, >= 0.5.3)
212
221
  pathutil (0.16.2)
213
222
  forwardable-extended (~> 2.6)
214
223
  public_suffix (3.1.1)
215
- rb-fsevent (0.10.3)
224
+ racc (1.5.2)
225
+ rb-fsevent (0.10.4)
216
226
  rb-inotify (0.10.1)
217
227
  ffi (~> 1.0)
218
- rouge (3.13.0)
219
- ruby-enum (0.7.2)
228
+ rexml (3.2.4)
229
+ rouge (3.23.0)
230
+ ruby-enum (0.8.0)
220
231
  i18n
232
+ ruby2_keywords (0.0.2)
221
233
  rubyzip (2.3.0)
222
234
  safe_yaml (1.0.5)
223
235
  sass (3.7.4)
@@ -228,26 +240,29 @@ GEM
228
240
  sawyer (0.8.2)
229
241
  addressable (>= 2.3.5)
230
242
  faraday (> 0.8, < 2.0)
243
+ simpleidn (0.1.1)
244
+ unf (~> 0.1.4)
231
245
  terminal-table (1.8.0)
232
246
  unicode-display_width (~> 1.1, >= 1.1.1)
233
247
  thread_safe (0.3.6)
234
- typhoeus (1.3.1)
248
+ typhoeus (1.4.0)
235
249
  ethon (>= 0.9.0)
236
- tzinfo (1.2.6)
250
+ tzinfo (1.2.9)
237
251
  thread_safe (~> 0.1)
238
- tzinfo-data (1.2019.3)
252
+ tzinfo-data (1.2020.6)
239
253
  tzinfo (>= 1.0.0)
254
+ unf (0.1.4)
255
+ unf_ext
256
+ unf_ext (0.0.7.7)
240
257
  unicode-display_width (1.7.0)
241
258
  wdm (0.1.1)
242
- zeitwerk (2.3.0)
259
+ zeitwerk (2.4.2)
243
260
 
244
261
  PLATFORMS
245
262
  ruby
246
263
 
247
264
  DEPENDENCIES
248
- github-pages (~> 204)
249
- jekyll-feed (~> 0.6)
250
- minima (~> 2.0)
265
+ github-pages (~> 209)
251
266
  tzinfo (~> 1.2)
252
267
  tzinfo-data
253
268
  wdm (~> 0.1.0)