bumped deps
This commit is contained in:
parent
b79134ef9a
commit
ad9850a8e2
@ -1 +1 @@
|
|||||||
2.6.2
|
2.6.3
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM phusion/passenger-ruby26:1.0.5
|
FROM phusion/passenger-ruby26:1.0.6
|
||||||
|
|
||||||
# Use baseimage-docker's init process.
|
# Use baseimage-docker's init process.
|
||||||
CMD ["/sbin/my_init"]
|
CMD ["/sbin/my_init"]
|
||||||
|
8
Gemfile
8
Gemfile
@ -8,7 +8,7 @@ gem 'bootsnap', '>= 1.1.0', require: false
|
|||||||
|
|
||||||
gem 'jbuilder', '~> 2.9'
|
gem 'jbuilder', '~> 2.9'
|
||||||
|
|
||||||
gem 'oj', '~> 3.8.1'
|
gem 'oj', '~> 3.9.1'
|
||||||
|
|
||||||
gem 'kaminari', '~> 1.1.1'
|
gem 'kaminari', '~> 1.1.1'
|
||||||
gem 'unitwise', '~> 2.2.0'
|
gem 'unitwise', '~> 2.2.0'
|
||||||
@ -17,18 +17,18 @@ gem 'redcarpet', '~> 3.5.0'
|
|||||||
gem 'dalli', '~> 2.7.10'
|
gem 'dalli', '~> 2.7.10'
|
||||||
|
|
||||||
# Use ActiveModel has_secure_password
|
# Use ActiveModel has_secure_password
|
||||||
gem 'bcrypt', '~> 3.1.12'
|
gem 'bcrypt', '~> 3.1.13'
|
||||||
|
|
||||||
gem 'tzinfo-data'
|
gem 'tzinfo-data'
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
|
|
||||||
gem 'puma', '~> 4.0.1'
|
gem 'puma', '~> 4.1.1'
|
||||||
gem 'sqlite3', '~> 1.4.1'
|
gem 'sqlite3', '~> 1.4.1'
|
||||||
|
|
||||||
gem 'guard', '~> 2.15.0'
|
gem 'guard', '~> 2.15.0'
|
||||||
gem 'guard-rspec', require: false
|
gem 'guard-rspec', require: false
|
||||||
gem 'rspec-rails', '~> 3.8.0'
|
gem 'rspec-rails', '~> 3.8.2'
|
||||||
gem 'rails-controller-testing'
|
gem 'rails-controller-testing'
|
||||||
gem 'factory_bot_rails', '~> 5.0.2'
|
gem 'factory_bot_rails', '~> 5.0.2'
|
||||||
gem 'database_cleaner', '~> 1.7.0'
|
gem 'database_cleaner', '~> 1.7.0'
|
||||||
|
24
Gemfile.lock
24
Gemfile.lock
@ -44,7 +44,7 @@ GEM
|
|||||||
tzinfo (~> 1.1)
|
tzinfo (~> 1.1)
|
||||||
arel (9.0.0)
|
arel (9.0.0)
|
||||||
bcrypt (3.1.13)
|
bcrypt (3.1.13)
|
||||||
bootsnap (1.4.4)
|
bootsnap (1.4.5)
|
||||||
msgpack (~> 1.0)
|
msgpack (~> 1.0)
|
||||||
builder (3.2.3)
|
builder (3.2.3)
|
||||||
coderay (1.1.2)
|
coderay (1.1.2)
|
||||||
@ -63,7 +63,7 @@ GEM
|
|||||||
formatador (0.2.5)
|
formatador (0.2.5)
|
||||||
globalid (0.4.2)
|
globalid (0.4.2)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
guard (2.15.0)
|
guard (2.15.1)
|
||||||
formatador (>= 0.2.4)
|
formatador (>= 0.2.4)
|
||||||
listen (>= 2.7, < 4.0)
|
listen (>= 2.7, < 4.0)
|
||||||
lumberjack (>= 1.0.12, < 2.0)
|
lumberjack (>= 1.0.12, < 2.0)
|
||||||
@ -115,19 +115,19 @@ GEM
|
|||||||
minitest (5.11.3)
|
minitest (5.11.3)
|
||||||
msgpack (1.3.1)
|
msgpack (1.3.1)
|
||||||
nenv (0.3.0)
|
nenv (0.3.0)
|
||||||
nio4r (2.4.0)
|
nio4r (2.5.1)
|
||||||
nokogiri (1.10.3)
|
nokogiri (1.10.4)
|
||||||
mini_portile2 (~> 2.4.0)
|
mini_portile2 (~> 2.4.0)
|
||||||
notiffany (0.1.3)
|
notiffany (0.1.3)
|
||||||
nenv (~> 0.1)
|
nenv (~> 0.1)
|
||||||
shellany (~> 0.0)
|
shellany (~> 0.0)
|
||||||
oj (3.8.1)
|
oj (3.9.1)
|
||||||
parslet (1.8.2)
|
parslet (1.8.2)
|
||||||
pg (1.1.4)
|
pg (1.1.4)
|
||||||
pry (0.12.2)
|
pry (0.12.2)
|
||||||
coderay (~> 1.1.0)
|
coderay (~> 1.1.0)
|
||||||
method_source (~> 0.9.0)
|
method_source (~> 0.9.0)
|
||||||
puma (4.0.1)
|
puma (4.1.1)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
rack (2.0.7)
|
rack (2.0.7)
|
||||||
rack-proxy (0.6.5)
|
rack-proxy (0.6.5)
|
||||||
@ -154,7 +154,7 @@ GEM
|
|||||||
rails-dom-testing (2.0.3)
|
rails-dom-testing (2.0.3)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.1.0)
|
rails-html-sanitizer (1.2.0)
|
||||||
loofah (~> 2.2, >= 2.2.2)
|
loofah (~> 2.2, >= 2.2.2)
|
||||||
railties (5.2.3)
|
railties (5.2.3)
|
||||||
actionpack (= 5.2.3)
|
actionpack (= 5.2.3)
|
||||||
@ -222,7 +222,7 @@ PLATFORMS
|
|||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
bcrypt (~> 3.1.12)
|
bcrypt (~> 3.1.13)
|
||||||
bootsnap (>= 1.1.0)
|
bootsnap (>= 1.1.0)
|
||||||
dalli (~> 2.7.10)
|
dalli (~> 2.7.10)
|
||||||
database_cleaner (~> 1.7.0)
|
database_cleaner (~> 1.7.0)
|
||||||
@ -231,17 +231,17 @@ DEPENDENCIES
|
|||||||
guard-rspec
|
guard-rspec
|
||||||
jbuilder (~> 2.9)
|
jbuilder (~> 2.9)
|
||||||
kaminari (~> 1.1.1)
|
kaminari (~> 1.1.1)
|
||||||
oj (~> 3.8.1)
|
oj (~> 3.9.1)
|
||||||
pg (~> 1.1.4)
|
pg (~> 1.1.4)
|
||||||
puma (~> 4.0.1)
|
puma (~> 4.1.1)
|
||||||
rails (= 5.2.3)
|
rails (= 5.2.3)
|
||||||
rails-controller-testing
|
rails-controller-testing
|
||||||
redcarpet (~> 3.5.0)
|
redcarpet (~> 3.5.0)
|
||||||
rspec-rails (~> 3.8.0)
|
rspec-rails (~> 3.8.2)
|
||||||
sqlite3 (~> 1.4.1)
|
sqlite3 (~> 1.4.1)
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
unitwise (~> 2.2.0)
|
unitwise (~> 2.2.0)
|
||||||
webpacker (= 4.0.7)
|
webpacker (= 4.0.7)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.0.1
|
2.0.2
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
@import "~bulma/sass/components/pagination";
|
@import "~bulma/sass/components/pagination";
|
||||||
@import "~bulma/sass/components/panel";
|
@import "~bulma/sass/components/panel";
|
||||||
@import "~bulma/sass/elements/_all";
|
@import "~bulma/sass/elements/_all";
|
||||||
|
@import "~bulma/sass/form/_all";
|
||||||
@import "~bulma/sass/grid/columns";
|
@import "~bulma/sass/grid/columns";
|
||||||
@import "~bulma/sass/layout/section";
|
@import "~bulma/sass/layout/section";
|
||||||
|
|
||||||
@ -51,4 +52,4 @@ body {
|
|||||||
|
|
||||||
.is-strikethrough {
|
.is-strikethrough {
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<link rel="icon" href="/logo_228.png" sizes="228x228">
|
<link rel="icon" href="/logo_228.png" sizes="228x228">
|
||||||
|
|
||||||
<!-- Android -->
|
<!-- Android -->
|
||||||
<link rel="shortcut icon" sizes="196x196" href=“/logo_196.png">
|
<link rel="shortcut icon" sizes="196x196" href="/logo_196.png">
|
||||||
|
|
||||||
<!-- iOS -->
|
<!-- iOS -->
|
||||||
<link rel="apple-touch-icon" href="/logo_120.png" sizes="120x120">
|
<link rel="apple-touch-icon" href="/logo_120.png" sizes="120x120">
|
||||||
|
32
package.json
32
package.json
@ -1,26 +1,26 @@
|
|||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@rails/webpacker": "4.0.7",
|
"@rails/webpacker": "4.0.7",
|
||||||
"@tweenjs/tween.js": "^17.2.0",
|
"@tweenjs/tween.js": "^18.3.1",
|
||||||
"autosize": "^4.0.1",
|
"autosize": "^4.0.2",
|
||||||
"bulma": "^0.7.2",
|
"bulma": "^0.7.5",
|
||||||
"cheerio": "^1.0.0-rc.2",
|
"cheerio": "^1.0.0-rc.3",
|
||||||
"css-loader": "^2.1.0",
|
"css-loader": "^2.1.0",
|
||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.15",
|
||||||
"svg-loader": "^0.0.2",
|
"svg-loader": "^0.0.2",
|
||||||
"url-loader": "1.0.1",
|
"url-loader": "2.1.0",
|
||||||
"vue": "^2.5.21",
|
"vue": "^2.6.10",
|
||||||
"vue-loader": "^15.4.2",
|
"vue-loader": "^15.7.1",
|
||||||
"vue-progressbar": "^0.7.4",
|
"vue-progressbar": "^0.7.5",
|
||||||
"vue-resize": "^0.4.4",
|
"vue-resize": "^0.4.5",
|
||||||
"vue-router": "^3.0.2",
|
"vue-router": "^3.1.3",
|
||||||
"vue-template-compiler": "^2.5.21",
|
"vue-template-compiler": "^2.6.10",
|
||||||
"vuex": "^3.1.0",
|
"vuex": "^3.1.1",
|
||||||
"vuex-router-sync": "^5.0.0",
|
"vuex-router-sync": "^5.0.0",
|
||||||
"webpack": "^4.28.1"
|
"webpack": "^4.39.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"webpack-cli": "^3.3.6",
|
"webpack-cli": "^3.3.8",
|
||||||
"webpack-dev-server": "^3.1.14"
|
"webpack-dev-server": "^3.8.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
6223
yarn-error.log
6223
yarn-error.log
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user