File tree 5 files changed +9
-5
lines changed
5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 6
6
rm -rf /usr/src/app/tmp/pids
7
7
8
8
# Verify node_modules are up to date
9
- # yarn install --silent
9
+ yarn install --silent
10
10
11
11
# Verify gems are up to date
12
12
if ! bundle check > /dev/null; then
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ group :test do
43
43
gem 'capybara' , '>= 2.15'
44
44
gem 'database_cleaner' , '~> 0.9.1'
45
45
gem "factory_bot_rails"
46
+ gem 'factory_bot' , '6.4.4'
46
47
gem 'selenium-webdriver'
47
48
gem 'simplecov' , require : false
48
49
gem 'webdrivers' , '< 4.1'
Original file line number Diff line number Diff line change 135
135
ffi (>= 1.15.0 )
136
136
excon (0.110.0 )
137
137
execjs (2.9.1 )
138
- factory_bot (6.4.5 )
138
+ factory_bot (6.4.4 )
139
139
activesupport (>= 5.0.0 )
140
140
factory_bot_rails (6.4.3 )
141
141
factory_bot (~> 6.4 )
@@ -392,6 +392,7 @@ DEPENDENCIES
392
392
devise
393
393
dragonfly
394
394
dragonfly-s3_data_store
395
+ factory_bot (= 6.4.4 )
395
396
factory_bot_rails
396
397
listen (>= 3.0.5 , < 3.2 )
397
398
mimemagic !
@@ -417,4 +418,4 @@ RUBY VERSION
417
418
ruby 2.7.2p137
418
419
419
420
BUNDLED WITH
420
- 2.1.4
421
+ 2.4.13
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
2
3
- # This file loads spring without using Bundler, in order to be fast.
3
+ # This file loads Spring without using Bundler, in order to be fast.
4
4
# It gets overwritten when you run the `spring binstub` command.
5
5
6
6
unless defined? ( Spring )
7
7
require 'rubygems'
8
8
require 'bundler'
9
9
10
10
lockfile = Bundler ::LockfileParser . new ( Bundler . default_lockfile . read )
11
- spring = lockfile . specs . detect { |spec | spec . name == " spring" }
11
+ spring = lockfile . specs . detect { |spec | spec . name == ' spring' }
12
12
if spring
13
13
Gem . use_paths Gem . dir , Bundler . bundle_path . to_s , *Gem . path
14
14
gem 'spring' , spring . version
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ services:
11
11
POSTGRES_DB : adventure-time_development
12
12
13
13
app :
14
+ platform : linux/x86_64
14
15
image : storyboard_app
15
16
build :
16
17
context : .
@@ -38,6 +39,7 @@ services:
38
39
stdin_open : true
39
40
40
41
webpack :
42
+ platform : linux/x86_64
41
43
image : storyboard_app
42
44
command : [
43
45
" ./.docker-config/wait-for-it.sh" ,
You can’t perform that action at this time.
0 commit comments