pgai 0.2.1 → 0.2.2

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: 7c07781fdcd787b0aaba1d7fe23afcb6e63ee1b5da7900ac454bd9d2e95dde4f
4
- data.tar.gz: 3ff5e06bc552e96b04359bca358f83563f11d76eed0cd205d4d8210ab9f86604
3
+ metadata.gz: bbd22b8be81c76ea9a661cd5b9f0befffeade51768c562bdfa9991f84e998401
4
+ data.tar.gz: 9281676b174a9553b6a1042f787c8f00510f25e117c6736ce3a5f4a8bf79a0c1
5
5
  SHA512:
6
- metadata.gz: 82dc1b7d5aea1922e36753731125e85239c1a4d03e7bcaeb172e37c4db959fdbee24aa55ecaaf82eeb6312ade4b15efcbf827687acf0012eb135487b6b918bd3
7
- data.tar.gz: 3308fcc8359891f10b550e20f448ca0e0e32e1ee00753aedbfcf08bd90efe18de7a932fd3de3dd43c841468a45280b663a664d854eb823a98de516a2bb6d7a9d
6
+ metadata.gz: a2d1852ef9c05a0827f35c1af73b3e805578cd849010dc679f2796f46eae454c468051ba4d9128e25477c5096de595f8126bc2da0540fa307351fca8eefde250
7
+ data.tar.gz: e4eb38d1c0dce730db90ef99b7396e06536c193c17e41e840cd48a908f14fc684573c3d250ca8821d57086a8bc6956c5663386093a0452c61e749feede460908
data/README.md CHANGED
@@ -63,6 +63,12 @@ pgai connect <env alias>
63
63
 
64
64
  Multiple `connect` commands for an environment will connect to the same clone, it won't start a new one.
65
65
 
66
+ `pgai info <env alias>` prints out a database URL variable that can be used from Rails to integrate with dblab. Example for `CI` database:
67
+
68
+ ```shell
69
+ CI_DATABASE_URL="postgresql://foo:bar@localhost:9000/foo_test" bin/rails c -e test
70
+ ```
71
+
66
72
  ### Features
67
73
 
68
74
  - multiple psql sessions to the same clone
@@ -41,8 +41,11 @@ module Pgai
41
41
  clone = find_clone
42
42
  return {} unless clone
43
43
 
44
+ database_url = "#{enviroment_alias.to_s.upcase}_DATABASE_URL='#{clone.database_url}'"
45
+
44
46
  {
45
- connection_string: clone.connection_string,
47
+ psql_connection_string: clone.connection_string,
48
+ rails_database_url: database_url,
46
49
  created_at: clone.created_at,
47
50
  data_state_at: clone.data_state_at
48
51
  }
@@ -115,8 +118,12 @@ module Pgai
115
118
  environment.fetch(:port)
116
119
  end
117
120
 
121
+ def enviroment_alias
122
+ environment.fetch(:alias)
123
+ end
124
+
118
125
  def clone_id
119
- @clone_id ||= [config.clone_prefix, environment.fetch(:alias)].join("_")
126
+ @clone_id ||= [config.clone_prefix, enviroment_alias].join("_")
120
127
  end
121
128
 
122
129
  def clone_user
data/lib/pgai/config.rb CHANGED
@@ -10,6 +10,10 @@ module Pgai
10
10
  def connection_string
11
11
  "'host=#{host} port=#{port} user=#{user} dbname=#{dbname} password=#{password}'"
12
12
  end
13
+
14
+ def database_url
15
+ "postgresql://#{user}:#{password}@#{host}:#{port}/#{dbname}"
16
+ end
13
17
  end
14
18
 
15
19
  attr_accessor :clone_prefix
data/lib/pgai/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pgai
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
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.1
4
+ version: 0.2.2
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-10 00:00:00.000000000 Z
11
+ date: 2023-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor