This repository was archived by the owner on Jun 29, 2019. It is now read-only.
File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
3
gem 'sequel' , '~> 4.30'
4
- gem 'docker-api' , '~> 1.25 '
4
+ gem 'docker-api' , '~> 1.33.2 '
5
5
6
6
group :tester do
7
7
# core
@@ -10,7 +10,7 @@ group :tester do
10
10
11
11
# engines
12
12
gem 'pg' , '~> 0.18.4'
13
- gem 'mysql2' , '~> 0.4.2 '
13
+ gem 'mysql2' , '~> 0.4.6 '
14
14
gem 'mongoid' , '~> 5.0' , '>= 5.0.2'
15
15
gem 'rethinkdb' , '~> 2.2' , '>= 2.2.0.2'
16
16
gem 'sqlite3' , '~> 1.3' , '>= 1.3.11'
Original file line number Diff line number Diff line change 21
21
colored (1.2 )
22
22
daemons (1.2.3 )
23
23
diff-lcs (1.2.5 )
24
- docker-api (1.25.0 )
24
+ docker-api (1.33.2 )
25
25
excon (>= 0.38.0 )
26
26
json
27
27
eventmachine (1.0.9.1 )
28
- excon (0.45.4 )
28
+ excon (0.55.0 )
29
29
git-up (0.5.12 )
30
30
colored (>= 1.2 )
31
31
grit
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def initialize(params)
8
8
@docker_tag ||= '5.7.10'
9
9
@docker_env ||= [ 'MYSQL_ALLOW_EMPTY_PASSWORD=yes' , "MYSQL_DATABASE=#{ @database } " ]
10
10
@port ||= 3306
11
- @sql_file ||= 'MySQL.sql'
11
+ @sql_file = params [ :sql_file ] || 'MySQL.sql'
12
12
end
13
13
14
14
def load_backup ( path )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ def initialize(params)
8
8
@docker_tag ||= '9.5.0'
9
9
@docker_env ||= [ "POSTGRES_USER=#{ @database } " , "POSTGRES_DB=#{ @database } " ]
10
10
@port ||= 5432
11
- @sql_file ||= 'PostgreSQL.sql'
11
+ @sql_file = params [ :sql_file ] || 'PostgreSQL.sql'
12
12
end
13
13
14
14
def load_backup ( path )
You can’t perform that action at this time.
0 commit comments