schema-evolution-manager 0.9.51 → 0.9.52

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: 5607ce9ddb40b0da1972de8ddc6352fd52d0ddecfcf4e12a22eaf8c5df2b9cb2
4
- data.tar.gz: 4fc5721b5020371c23f6fa98bb0659660e95d602d9c90ceaf8deb03f7356a95b
3
+ metadata.gz: b35e8a63c7ed763489dbccec6767f4bfe1156606991c542c695bac35c7229a81
4
+ data.tar.gz: 817b93f9201497de8de5fcb77c108ab3cf4c2adac40a19e6f7c55440dcdddc02
5
5
  SHA512:
6
- metadata.gz: e8f3328ba25b7d215d84594d54286f899a16066dfdfcac74ffca6a022f8296e1cd1f1ce299080c4cd351b0634a6434f670a5eac282eb374454a8505450267614
7
- data.tar.gz: 25a09aa167990b08a2fa62b2f8ec1113880fc9a9a600c378f0f89321767ec90b09b22596661f27443eb08415e79b52ee33169b28e834842298fe3fc8136a06e2
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.51
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema-evolution-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.51
4
+ version: 0.9.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bryzek