pgai 0.2.2 → 0.2.3

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: bbd22b8be81c76ea9a661cd5b9f0befffeade51768c562bdfa9991f84e998401
4
- data.tar.gz: 9281676b174a9553b6a1042f787c8f00510f25e117c6736ce3a5f4a8bf79a0c1
3
+ metadata.gz: 16b287abec3a2748a73207afe42f679c03055a989496ba5610bcae530f565352
4
+ data.tar.gz: c2414c821b4fbf99fe12e7d8031c40cc17aa437a33a68d0a4ecdb8c2586418fd
5
5
  SHA512:
6
- metadata.gz: a2d1852ef9c05a0827f35c1af73b3e805578cd849010dc679f2796f46eae454c468051ba4d9128e25477c5096de595f8126bc2da0540fa307351fca8eefde250
7
- data.tar.gz: e4eb38d1c0dce730db90ef99b7396e06536c193c17e41e840cd48a908f14fc684573c3d250ca8821d57086a8bc6956c5663386093a0452c61e749feede460908
6
+ metadata.gz: d113076e6e8568cea4bbf34a9c6e2101c0375063e9458baafd87a2510ef2ff79f912d082adeec6abfdd0177dcf349fec59b76c0c2544d933522b437a1fca370a
7
+ data.tar.gz: cbe551ec80fe9a53b47f8d99789fd603bf01d5b4217f34d6df1eded1a2ae6005cad94006ddcba52b00acea28be5b841eca71db32f4eca724e59bc3f9374e62f4
data/lib/pgai/cli/main.rb CHANGED
@@ -40,6 +40,18 @@ module Pgai::Cli
40
40
  print_table data
41
41
  end
42
42
 
43
+ desc "exp", "Show clone details"
44
+ method_option :only, aliases: "-o", desc: "Configure only this variable", repeatable: true
45
+ def exp(*command)
46
+ envs = options.fetch(:only) { configuration.enviroments.keys }
47
+ clones = envs.each_with_object({}) { |env, acc|
48
+ acc[env] = Pgai::CloneManager.new(configuration.enviroments.fetch(env), config: configuration).clone
49
+ }
50
+ vars = clones.map { |env, clone| ["#{env.to_s.upcase}_DATABASE_URL", clone.database_url] }.to_h
51
+
52
+ exec(vars, *command)
53
+ end
54
+
43
55
  desc "env", "Manage environments"
44
56
  subcommand "env", Pgai::Cli::Env
45
57
  end
@@ -51,6 +51,13 @@ module Pgai
51
51
  }
52
52
  end
53
53
 
54
+ def clone
55
+ configure_enviroment
56
+ clone = find_or_create_clone
57
+ port_forward.start(clone.port)
58
+ clone
59
+ end
60
+
54
61
  private
55
62
 
56
63
  attr_reader :environment, :config, :port_forward, :dblab
data/lib/pgai/config.rb CHANGED
@@ -72,7 +72,7 @@ module Pgai
72
72
 
73
73
  def persist_clone(id, attributes = {})
74
74
  store.transaction do
75
- store[:clones] = {}
75
+ store[:clones] ||= {}
76
76
  store[:clones].merge!(id => attributes)
77
77
  end
78
78
 
data/lib/pgai/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pgai
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pgai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marius Bobin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-18 00:00:00.000000000 Z
11
+ date: 2023-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor