Skip to content
This repository was archived by the owner on May 25, 2020. It is now read-only.

Commit 964986b

Browse files
committed
pin to 2.7.0
1 parent 7ac4563 commit 964986b

File tree

6 files changed

+181
-93
lines changed

6 files changed

+181
-93
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ test/dummy/node_modules/
3434
yarn-error.log
3535

3636
*.gem
37+
38+
.generators
39+
.rakeTasks

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Performance:
1717
Rails:
1818
Enabled: true
1919

20-
Metrics/LineLength:
20+
Layout/LineLength:
2121
Max: 150
2222

2323
Metrics/MethodLength:

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.6.5
1+
ruby-2.7.0

Gemfile

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,11 @@ gem "sqlite3", "~> 1.4"
2121

2222
# Use Puma as the app server
2323
gem "puma"
24-
# For better console experience
25-
gem "pry-rails"
2624
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
2725
gem "listen", ">= 3.0.5", "< 3.2"
2826
gem "web-console", group: :development
2927
# Call "byebug" anywhere in the code to stop execution and get a debugger console
30-
gem "pry-byebug"
31-
32-
gem "better_errors"
33-
gem "binding_of_caller"
28+
gem "byebug", group: %i[development test]
3429

3530
# To support ES6
3631
gem "sprockets", "~> 4.0.0"

Gemfile.lock

+64-83
Original file line numberDiff line numberDiff line change
@@ -7,59 +7,59 @@ PATH
77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
actioncable (6.0.1)
11-
actionpack (= 6.0.1)
10+
actioncable (6.0.2.1)
11+
actionpack (= 6.0.2.1)
1212
nio4r (~> 2.0)
1313
websocket-driver (>= 0.6.1)
14-
actionmailbox (6.0.1)
15-
actionpack (= 6.0.1)
16-
activejob (= 6.0.1)
17-
activerecord (= 6.0.1)
18-
activestorage (= 6.0.1)
19-
activesupport (= 6.0.1)
14+
actionmailbox (6.0.2.1)
15+
actionpack (= 6.0.2.1)
16+
activejob (= 6.0.2.1)
17+
activerecord (= 6.0.2.1)
18+
activestorage (= 6.0.2.1)
19+
activesupport (= 6.0.2.1)
2020
mail (>= 2.7.1)
21-
actionmailer (6.0.1)
22-
actionpack (= 6.0.1)
23-
actionview (= 6.0.1)
24-
activejob (= 6.0.1)
21+
actionmailer (6.0.2.1)
22+
actionpack (= 6.0.2.1)
23+
actionview (= 6.0.2.1)
24+
activejob (= 6.0.2.1)
2525
mail (~> 2.5, >= 2.5.4)
2626
rails-dom-testing (~> 2.0)
27-
actionpack (6.0.1)
28-
actionview (= 6.0.1)
29-
activesupport (= 6.0.1)
30-
rack (~> 2.0)
27+
actionpack (6.0.2.1)
28+
actionview (= 6.0.2.1)
29+
activesupport (= 6.0.2.1)
30+
rack (~> 2.0, >= 2.0.8)
3131
rack-test (>= 0.6.3)
3232
rails-dom-testing (~> 2.0)
3333
rails-html-sanitizer (~> 1.0, >= 1.2.0)
34-
actiontext (6.0.1)
35-
actionpack (= 6.0.1)
36-
activerecord (= 6.0.1)
37-
activestorage (= 6.0.1)
38-
activesupport (= 6.0.1)
34+
actiontext (6.0.2.1)
35+
actionpack (= 6.0.2.1)
36+
activerecord (= 6.0.2.1)
37+
activestorage (= 6.0.2.1)
38+
activesupport (= 6.0.2.1)
3939
nokogiri (>= 1.8.5)
40-
actionview (6.0.1)
41-
activesupport (= 6.0.1)
40+
actionview (6.0.2.1)
41+
activesupport (= 6.0.2.1)
4242
builder (~> 3.1)
4343
erubi (~> 1.4)
4444
rails-dom-testing (~> 2.0)
4545
rails-html-sanitizer (~> 1.1, >= 1.2.0)
4646
activeentity (0.0.1.beta14)
4747
activemodel (>= 6.0.0.rc1, < 7.0)
4848
activesupport (>= 6.0.0.rc1, < 7.0)
49-
activejob (6.0.1)
50-
activesupport (= 6.0.1)
49+
activejob (6.0.2.1)
50+
activesupport (= 6.0.2.1)
5151
globalid (>= 0.3.6)
52-
activemodel (6.0.1)
53-
activesupport (= 6.0.1)
54-
activerecord (6.0.1)
55-
activemodel (= 6.0.1)
56-
activesupport (= 6.0.1)
57-
activestorage (6.0.1)
58-
actionpack (= 6.0.1)
59-
activejob (= 6.0.1)
60-
activerecord (= 6.0.1)
52+
activemodel (6.0.2.1)
53+
activesupport (= 6.0.2.1)
54+
activerecord (6.0.2.1)
55+
activemodel (= 6.0.2.1)
56+
activesupport (= 6.0.2.1)
57+
activestorage (6.0.2.1)
58+
actionpack (= 6.0.2.1)
59+
activejob (= 6.0.2.1)
60+
activerecord (= 6.0.2.1)
6161
marcel (~> 0.3.1)
62-
activesupport (6.0.1)
62+
activesupport (6.0.2.1)
6363
concurrent-ruby (~> 1.0, >= 1.0.2)
6464
i18n (>= 0.7, < 2)
6565
minitest (~> 5.1)
@@ -70,22 +70,14 @@ GEM
7070
babel-transpiler (0.7.0)
7171
babel-source (>= 4.0, < 6)
7272
execjs (~> 2.0)
73-
better_errors (2.5.1)
74-
coderay (>= 1.0.0)
75-
erubi (>= 1.0.0)
76-
rack (>= 0.9.0)
7773
bindex (0.8.1)
78-
binding_of_caller (0.8.0)
79-
debug_inspector (>= 0.0.1)
80-
builder (3.2.3)
74+
builder (3.2.4)
8175
bulma-rails (0.8.0)
8276
sassc (~> 2.0)
8377
byebug (11.0.1)
8478
cocoon (1.2.14)
85-
coderay (1.1.2)
8679
concurrent-ruby (1.1.5)
8780
crass (1.0.5)
88-
debug_inspector (0.0.3)
8981
erubi (1.9.0)
9082
execjs (2.7.0)
9183
ffi (1.11.3)
@@ -121,7 +113,7 @@ GEM
121113
minitest (5.13.0)
122114
msgpack (1.3.1)
123115
nio4r (2.5.2)
124-
nokogiri (1.10.5)
116+
nokogiri (1.10.7)
125117
mini_portile2 (~> 2.4.0)
126118
parallel (1.19.1)
127119
parser (2.6.5.0)
@@ -132,62 +124,54 @@ GEM
132124
process-group
133125
process-terminal (0.2.0)
134126
ffi
135-
pry (0.12.2)
136-
coderay (~> 1.1.0)
137-
method_source (~> 0.9.0)
138-
pry-byebug (3.7.0)
139-
byebug (~> 11.0)
140-
pry (~> 0.10)
141-
pry-rails (0.3.9)
142-
pry (>= 0.10.4)
143127
puma (4.3.1)
144128
nio4r (~> 2.0)
145129
rack (2.0.8)
146130
rack-test (1.1.0)
147131
rack (>= 1.0, < 3)
148-
rails (6.0.1)
149-
actioncable (= 6.0.1)
150-
actionmailbox (= 6.0.1)
151-
actionmailer (= 6.0.1)
152-
actionpack (= 6.0.1)
153-
actiontext (= 6.0.1)
154-
actionview (= 6.0.1)
155-
activejob (= 6.0.1)
156-
activemodel (= 6.0.1)
157-
activerecord (= 6.0.1)
158-
activestorage (= 6.0.1)
159-
activesupport (= 6.0.1)
132+
rails (6.0.2.1)
133+
actioncable (= 6.0.2.1)
134+
actionmailbox (= 6.0.2.1)
135+
actionmailer (= 6.0.2.1)
136+
actionpack (= 6.0.2.1)
137+
actiontext (= 6.0.2.1)
138+
actionview (= 6.0.2.1)
139+
activejob (= 6.0.2.1)
140+
activemodel (= 6.0.2.1)
141+
activerecord (= 6.0.2.1)
142+
activestorage (= 6.0.2.1)
143+
activesupport (= 6.0.2.1)
160144
bundler (>= 1.3.0)
161-
railties (= 6.0.1)
145+
railties (= 6.0.2.1)
162146
sprockets-rails (>= 2.0.0)
163147
rails-dom-testing (2.0.3)
164148
activesupport (>= 4.2.0)
165149
nokogiri (>= 1.6)
166150
rails-html-sanitizer (1.3.0)
167151
loofah (~> 2.3)
168-
railties (6.0.1)
169-
actionpack (= 6.0.1)
170-
activesupport (= 6.0.1)
152+
railties (6.0.2.1)
153+
actionpack (= 6.0.2.1)
154+
activesupport (= 6.0.2.1)
171155
method_source
172156
rake (>= 0.8.7)
173157
thor (>= 0.20.3, < 2.0)
174158
rainbow (3.0.0)
175159
rake (13.0.1)
176-
rake-compiler (1.0.8)
160+
rake-compiler (1.1.0)
177161
rake
178162
rb-fsevent (0.10.3)
179-
rb-inotify (0.10.0)
163+
rb-inotify (0.10.1)
180164
ffi (~> 1.0)
181-
rubocop (0.77.0)
165+
rubocop (0.78.0)
182166
jaro_winkler (~> 1.5.1)
183167
parallel (~> 1.10)
184168
parser (>= 2.6)
185169
rainbow (>= 2.2.2, < 4.0)
186170
ruby-progressbar (~> 1.7)
187171
unicode-display_width (>= 1.4.0, < 1.7)
188-
rubocop-performance (1.5.1)
172+
rubocop-performance (1.5.2)
189173
rubocop (>= 0.71.0)
190-
rubocop-rails (2.4.0)
174+
rubocop-rails (2.4.1)
191175
rack (>= 1.1)
192176
rubocop (>= 0.72.0)
193177
ruby-progressbar (1.10.1)
@@ -200,7 +184,7 @@ GEM
200184
sprockets (> 3.0)
201185
sprockets-rails
202186
tilt
203-
script_core (0.1.1)
187+
script_core (0.2.1)
204188
msgpack (~> 1.0)
205189
rake-compiler (~> 1.0)
206190
selectize-rails (0.12.6)
@@ -211,14 +195,14 @@ GEM
211195
actionpack (>= 4.0)
212196
activesupport (>= 4.0)
213197
sprockets (>= 3.0.0)
214-
sqlite3 (1.4.1)
215-
thor (0.20.3)
198+
sqlite3 (1.4.2)
199+
thor (1.0.1)
216200
thread_safe (0.3.6)
217201
tilt (2.0.10)
218202
turbolinks (5.2.1)
219203
turbolinks-source (~> 5.2)
220204
turbolinks-source (5.2.0)
221-
tzinfo (1.2.5)
205+
tzinfo (1.2.6)
222206
thread_safe (~> 0.1)
223207
uglifier (4.2.0)
224208
execjs (>= 0.3.0, < 3)
@@ -239,17 +223,14 @@ PLATFORMS
239223
DEPENDENCIES
240224
activeentity
241225
babel-transpiler
242-
better_errors
243-
binding_of_caller
244226
bulma-rails
227+
byebug
245228
cocoon
246229
form_core
247230
globalid
248231
graphviz
249232
jquery-rails
250233
listen (>= 3.0.5, < 3.2)
251-
pry-byebug
252-
pry-rails
253234
puma
254235
rails (~> 6.0.0)
255236
rubocop
@@ -266,4 +247,4 @@ DEPENDENCIES
266247
workflow_core!
267248

268249
BUNDLED WITH
269-
2.0.2
250+
2.1.2

0 commit comments

Comments
 (0)