schema-evolution-manager 0.9.51 → 0.9.52
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/README.md +1 -1
- data/lib/schema-evolution-manager/args.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b35e8a63c7ed763489dbccec6767f4bfe1156606991c542c695bac35c7229a81
|
4
|
+
data.tar.gz: 817b93f9201497de8de5fcb77c108ab3cf4c2adac40a19e6f7c55440dcdddc02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7e186f73416103231a1d78c9a2407ac279f424c97e92a1124595b56b312b52f92dbfef2ee837b98e2f4b18c9f986be2edabd018c7a4501c6455d1e32eec7284
|
7
|
+
data.tar.gz: e844602dd023854b5653f52b4a1b7239fd8a9e63ba6651ee974c48880a9ef64fdacf397e4e5aa99157a9772a54597b9384ce6a26a60c09577e997d4cc2941df0
|
data/README.md
CHANGED
@@ -133,7 +133,7 @@ There are three ways to install schema evolution manager:
|
|
133
133
|
|
134
134
|
git clone git@github.com:mbryzek/schema-evolution-manager.git
|
135
135
|
cd schema-evolution-manager
|
136
|
-
git checkout 0.9.
|
136
|
+
git checkout 0.9.52
|
137
137
|
ruby ./configure.rb
|
138
138
|
sudo ./install.rb
|
139
139
|
|
@@ -24,12 +24,13 @@ module SchemaEvolutionManager
|
|
24
24
|
FLAGS_NO_ARGUMENTS = {
|
25
25
|
:password => "Prompt user to enter password for the database user. Password is stored for the duration of the process",
|
26
26
|
:dry_run => "Include flag to echo commands that will run without actually executing them",
|
27
|
+
:non_interactive => "Avoid all prompts and use defaults for any option that requires user input",
|
27
28
|
:help => "Display help",
|
28
29
|
:verbose => "Enable verbose logging of all system calls",
|
29
30
|
}
|
30
31
|
end
|
31
32
|
|
32
|
-
attr_reader :artifact_name, :host, :port, :name, :prefix, :url, :user, :dir, :dry_run, :tag, :password, :set
|
33
|
+
attr_reader :artifact_name, :host, :port, :name, :prefix, :url, :user, :dir, :dry_run, :non_interactive, :tag, :password, :set
|
33
34
|
|
34
35
|
# args: Actual string arguments
|
35
36
|
# :required => list of parameters that are required
|
@@ -66,6 +67,7 @@ module SchemaEvolutionManager
|
|
66
67
|
@set = found_arguments.delete(:set) || []
|
67
68
|
|
68
69
|
@dry_run = found_arguments.delete(:dry_run)
|
70
|
+
@non_interactice = found_arguments.delete(:non_interactive)
|
69
71
|
@password = found_arguments.delete(:password)
|
70
72
|
@help = found_arguments.delete(:help)
|
71
73
|
@verbose = found_arguments.delete(:verbose)
|