Skip to content

Commit a46558f

Browse files
committed
update
1 parent 69ad05c commit a46558f

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.gitignore

+11-9
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,26 @@
88
.bundle/
99

1010
# Ignore the default SQLite database.
11-
/test/dummy/db/*.sqlite3
12-
/test/dummy/db/*.sqlite3-journal
11+
test/dummy/db/*.sqlite3
12+
test/dummy/db/*.sqlite3-journal
1313

1414
# Ignore all logfiles and tempfiles.
15-
!/test/dummy/log/.keep
16-
!/test/dummy/tmp/.keep
17-
/test/dummy/log/*.log
18-
/test/dummy/tmp/
15+
log/*.log
16+
!test/dummy/log/.keep
17+
!test/dummy/tmp/.keep
18+
test/dummy/log/*.log
19+
test/dummy/tmp/
1920

2021
# Ignore uploaded files in development
21-
/test/dummy/storage/*
22-
!/test/dummy/storage/.keep
22+
!test/dummy/storage/.keep
23+
test/dummy/storage/*
2324

2425
pkg/
2526
.byebug_history
2627

27-
/test/dummy/public/packs
2828
node_modules/
29+
test/dummy/public/packs
30+
test/dummy/node_modules/
2931
yarn-error.log
3032

3133
*.gem

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# frozen_string_literal: true
22

33
source "https://rubygems.org"
4-
54
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
65

76
# Declare your gem"s dependencies in form_core.gemspec.

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ GEM
152152
rb-fsevent (0.10.3)
153153
rb-inotify (0.9.10)
154154
ffi (>= 0.5.0, < 2)
155-
rubocop (0.58.2)
155+
rubocop (0.59.0)
156156
jaro_winkler (~> 1.5.1)
157157
parallel (~> 1.10)
158158
parser (>= 2.5, != 2.5.1.1)

0 commit comments

Comments
 (0)