switchman 1.11.1 → 1.11.2
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/lib/switchman/version.rb +1 -1
- data/lib/tasks/switchman.rake +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98fbc6b218fc11fd51c66e0762678059872165c8
|
4
|
+
data.tar.gz: 397e886ea3a569721b58212f5d4e25d784810c6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8edc7c2865448dfe0938c126fd85b7ffe73dd3a85da15b047aa3692793824cb96ae4504bf814cef2b4d5dc2da0301af844bfcbe7536b3b324f6bae7d9f5d06ad
|
7
|
+
data.tar.gz: 512e25f85e28189e126f39db29437ca087b52c7ca1b508516e5f49d84c696331e74e67bfd57782f8a77b5ae8281fc09238c2f41bccfce0f4e5b7c567147073f5
|
data/lib/switchman/version.rb
CHANGED
data/lib/tasks/switchman.rake
CHANGED
@@ -200,9 +200,10 @@ end
|
|
200
200
|
module Switchman
|
201
201
|
module ActiveRecord
|
202
202
|
module PostgreSQLDatabaseTasks
|
203
|
-
def structure_dump(filename)
|
203
|
+
def structure_dump(filename, extra_flags=nil)
|
204
204
|
set_psql_env
|
205
205
|
args = ['-s', '-x', '-O', '-f', filename]
|
206
|
+
args.concat(Array(extra_flags)) if extra_flags
|
206
207
|
search_path = configuration['schema_search_path']
|
207
208
|
if configuration['use_qualified_names']
|
208
209
|
shard = Shard.current.name
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: switchman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
4
|
+
version: 1.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cody Cutrer
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2017-
|
13
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: railties
|