capistrano-mysql_tables 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/capistrano-mysql_tables.gemspec +1 -1
- data/lib/capistrano/tasks/mysql_tables.rake +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba0cb998b46123fc62cbffc0db9d2a52df35a9f89d76f80626e6584c2c7a12ca
|
4
|
+
data.tar.gz: 8c864b6fa0500fd44f85b7a2c5f4dc54212e68d59676adf75e669e062d292845
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94d31b995a1d5513b80ee654dfc8d1e142552c3086419db69b7c0f8ea01c13d301f85c2859c14a5702947de8783de00c0d1176ad76b67a9b1d3f7ffcd542389e
|
7
|
+
data.tar.gz: a6f714e79974a37b9d316b246184ab5c00c05e016b03b1fe35b3976534af52d10a7ad8462e2d200282f64767a2e0d644366626a5da94fc77ca315fcde6984d02
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require "yaml"
|
2
2
|
|
3
3
|
def local_db_attributes
|
4
|
-
db_file = YAML.load_file("config/database.yml")
|
4
|
+
db_file = YAML.load_file("config/database.yml", aliases: true)
|
5
5
|
DatabaseAttributes.new(database: db_file["development"]["database"],
|
6
6
|
username: db_file["development"]["username"],
|
7
7
|
password: db_file["development"]["password"],
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-mysql_tables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Floyd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
requirements: []
|
70
|
-
rubygems_version: 3.
|
70
|
+
rubygems_version: 3.4.6
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: Easily move tables between hosts in rails projects with Capistrano.
|