manageiq-appliance_console 10.0.0 → 10.0.1

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: 114da6d51544c06e88b38816c7f8ffec7cdad12b4aca57220b50b3a129fb3b25
4
- data.tar.gz: e5cb078ac27fda7594a858cd9bfcb8d2717320e455a2dc253c376cf7b62fcda3
3
+ metadata.gz: 24e2e6f70a0eec283a0bd96905cc7c5d762a570b68f9b0995bf6001cb7ac53b8
4
+ data.tar.gz: 3e3f200832cd8a85d52deacf3a2fd695126e80b68e602c02eec6cda20bd58123
5
5
  SHA512:
6
- metadata.gz: f0f02de6f6b2f7468fde2d2b8f7e998ca24f35dd2217ea70ec1ffbd29375eab5a9751792369a32d203d4acd0fe9c19e8b382936d61fdfbfbf3c2fb5320ef9bc8
7
- data.tar.gz: 2bd7369d0799a0061616d8cc1c5abd0656773b26df4eeccf1458f266bb43827d134b11d1c31244253fea2ef731b12071ad3a16296e9b95f05308336ffb86fedc
6
+ metadata.gz: 07d6cf765043b8d5df50e8d8de87c1d7942e630cb958a89e8489ac7b42951d620944515e4d0bb438455aebd1b14fdb4428ac6434699f4c47617a029591d961f3
7
+ data.tar.gz: fdbba2254917061b5e05c13704b43e663a29615fea464c723d413d6a12cfd5839e50c4738fc73b753d98e465a0283a73db1c53f563f64abe7272fb6641ea07db
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [10.0.1] - 2024-11-27
8
+ ## Changed
9
+ - Readline does not work with ruby 3.3 [[#270](https://github.com/ManageIQ/manageiq-appliance_console/pull/270)]
10
+
7
11
  ## [10.0.0] - 2024-11-19
8
12
  ### Added
9
13
  - Test with ruby 3.3 [[#269](https://github.com/ManageIQ/manageiq-appliance_console/pull/269)]
@@ -299,7 +303,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
299
303
 
300
304
  ## [1.0.0] - 2017-10-19
301
305
 
302
- [Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.0...HEAD
306
+ [Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.1...HEAD
307
+ [10.0.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.0...v10.0.1
303
308
  [10.0.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.1...v10.0.0
304
309
  [9.1.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.0...v9.1.1
305
310
  [9.1.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.0.3...v9.1.0
@@ -118,15 +118,11 @@ module ManageIQ
118
118
  end
119
119
 
120
120
  def should_exclude_tables?
121
- ask_yn?("Would you like to exclude tables in the dump") do |q|
122
- q.readline = true
123
- end
121
+ ask_yn?("Would you like to exclude tables in the dump")
124
122
  end
125
123
 
126
124
  def should_split_output?
127
- ask_yn?("Would you like to split the #{action} output into multiple parts") do |q|
128
- q.readline = true
129
- end
125
+ ask_yn?("Would you like to split the #{action} output into multiple parts")
130
126
  end
131
127
 
132
128
  def filename_prompt_args
@@ -212,7 +212,6 @@ module ApplianceConsole
212
212
 
213
213
  def just_ask(prompt, default = nil, validate = nil, error_text = nil, klass = nil)
214
214
  ask("Enter the #{prompt}: ", klass) do |q|
215
- q.readline = true
216
215
  q.default = default.to_s if default
217
216
  q.validate = validate if validate
218
217
  q.responses[:not_valid] = error_text ? "Please provide #{error_text}" : "Please provide in the specified format"
@@ -1,5 +1,5 @@
1
1
  module ManageIQ
2
2
  module ApplianceConsole
3
- VERSION = '10.0.0'.freeze
3
+ VERSION = '10.0.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manageiq-appliance_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.0.0
4
+ version: 10.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ManageIQ Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-19 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord