souls 3.0.4 → 3.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da80f922f1771293981f57ce3f5dc37a1934af437d2b95b75b274e24b1b05d3d
4
- data.tar.gz: 2d0814392f52017895e3fc675e49b445886ea76a9ba04698588cf84d353d222e
3
+ metadata.gz: 5618d14bdcf55418ef9c3f0ecbefa097f6c2b8dee1b872cad6bfe10ea6021d38
4
+ data.tar.gz: ca2e5663cdf94a8d2a18fafd59904a5f3a902352571edc5683ac98d19bd4b759
5
5
  SHA512:
6
- metadata.gz: aa5b0d1a9616cbb4ff796a51618e5691174ffa692e032ac4c5e45f6e67371d6207bfb014cbbb67ae8ed6dc04169d959c66698998e46055d6c5d9d5747678bdd5
7
- data.tar.gz: 5557d93a317dbdea66632f9837d5f65a359c4180edcef1bb9164116bdcc744a4326c0eab54b668f3292dbb950b2cedcba05e19ae0df472bc05bf52c34b7d4e70
6
+ metadata.gz: 96ebe355ba9d3c7ee49aa40d28a451872570d7028695e6715621c4d89123ba67a72816035658dfb8552e699cfb729ad923fcfb459601889e4fc782b2391d7fe7
7
+ data.tar.gz: 9e7ca9398bc5d292c664a797184f18dcd191346db3c6cfcf2ae22b7e6b32ae8a9c1254b19ac10dd10707db9117ee59497c0830b050837ff6b900984d6939a6aa
@@ -1,16 +1,16 @@
1
1
  module SOULs
2
2
  class Docker < Thor
3
- desc "psql", "Run PostgreSQL13 Docker Container"
3
+ desc "psql", "Run PostgreSQL14 Docker Container"
4
4
  def psql
5
5
  system(
6
- "docker run --rm -d \
6
+ "docker run --restart always -d \
7
7
  --name souls-psql \
8
8
  -p 5433:5432 \
9
9
  -v postgres-tmp:/var/lib/postgresql/data \
10
10
  -e POSTGRES_USER=postgres \
11
11
  -e POSTGRES_PASSWORD=postgres \
12
12
  -e POSTGRES_DB=souls_test \
13
- postgres:13-alpine"
13
+ postgres:14-alpine"
14
14
  )
15
15
  system("docker ps")
16
16
  end
@@ -9,7 +9,7 @@ module SOULs
9
9
  project_id = SOULs.configuration.project_id
10
10
  instance_name = SOULs.configuration.instance_name
11
11
  region = SOULs.configuration.region if options[:region].blank?
12
- db_type = options[:mysql] ? "MYSQL_8_0" : "POSTGRES_13"
12
+ db_type = options[:mysql] ? "MYSQL_8_0" : "POSTGRES_14"
13
13
 
14
14
  zone = "#{region}-b"
15
15
  system("gcloud config set project #{project_id} >/dev/null 2>&1")
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module SOULs
2
- VERSION = "3.0.4".freeze
2
+ VERSION = "3.0.7".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 3.0.4
1
+ 3.0.7
@@ -1 +1 @@
1
- 3.0.4
1
+ 3.0.7
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-08-28 00:00:00.000000000 Z
13
+ date: 2022-09-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport