MuranoCLI 3.2.1.pre.beta.5 → 3.2.1.pre.beta.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bff5244477f257826ba1be660294833275bbaaba10ee563f23f6db6db34a0881
4
- data.tar.gz: ac6ebd0919a011d68edfcb2b5a72f92a44ba7a7e12c03bb62cae9be315b6c79e
3
+ metadata.gz: c7b6f4d6e31bdd654e04f1fc4c2ed30d90f94de8947b59164ffe6319d8ed7d97
4
+ data.tar.gz: 8ff84467a6042cb45824f35d84718996e6f8475493b2916d27e8d2db516e3d36
5
5
  SHA512:
6
- metadata.gz: c2f0256be1282cb71a11482e148df6cd38e2a698e7fb22b53870b8517234c8ae4ef16785dd5e850be16da89492a1f508f90730d15c997c932edff181d842e145
7
- data.tar.gz: 0dc91210f3647e1da4ec36c4b11d8bf0bfd9d8d753907df3b95f15191b9f9c1fe854c699814fac974edaba6f49aac08815890320c071dbce0bbdb60aa35d2f42
6
+ metadata.gz: 178bb7cc8e13a7defdadc041cf7e6dfc75ef9f0cfbeabbc5c7aaabf3904ecadc2b97bc8a3ac4402258cc786bf26bd6ec1701c56b5371b80f3da93f05a87f3ccb
7
+ data.tar.gz: ed15592b431a4c0e7c5e4e68f26a83801e83585b157ed5110c14861095f0f138701e27e05a68524278f6d41462e1b8dd7081943f9c21aee908383d1f6cf3ea9c
data/Gemfile CHANGED
@@ -26,6 +26,8 @@ gem 'mime-types-data', '~> 3.2016.0521'
26
26
  # WAS: gem 'commander', '~> 4.4.6'
27
27
  # NOW: gem 'murano-cli-commander', '~> 4.4.10'
28
28
  gem 'murano-cli-commander', '~> 4.4.10'
29
+ # We forked whirly to fix width calculation (strip color codes first).
30
+ gem 'murano-cli-whirly', '~> 0.2.7'
29
31
  #gem 'orderedhash', '~> 0.0.6'
30
32
  gem 'os', '~> 1.0.0'
31
33
  gem 'paint', '~> 2.0.0'
@@ -40,7 +42,6 @@ gem 'terminal-table', '~> 1.8.0'
40
42
  gem 'tty-editor', '~> 0.4.0'
41
43
  gem 'unicode-display_width', '~> 1.3.2'
42
44
  gem 'vine', '~> 0.4'
43
- gem 'whirly', '~> 0.2.4'
44
45
 
45
46
  group :test do
46
47
  #gem 'bundler', '~> 1.7.6'
data/HISTORY.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  ---------------------------------------------------------------------------
4
4
 
5
+ ## Murano CLI v3.2.1.pre.beta.6 (2018-08-09)
6
+
7
+ ### Improved
8
+
9
+ - Update from `whirly` gem to `murano-cli-whirly` (Issue: [MUR-7654](https://i.exosite.com/jira/browse/MUR-7654))
10
+
11
+ - Fixes problem with line breaks disrupting progress display
12
+ (when color codes are present).
13
+
14
+ ---------------------------------------------------------------------------
15
+
5
16
  ## Murano CLI v3.2.1.pre.beta.5 (2018-08-09)
6
17
 
7
18
  ### New
data/MuranoCLI.gemspec CHANGED
@@ -33,6 +33,9 @@ And so much more.
33
33
  # s.post_install_message = %(...)
34
34
 
35
35
  s.files = `git ls-files`.split("\n")
36
+ # (lb): MAYBE/2018-08-09: Do we need to include spec files in the gem?
37
+ # I added the spec/fixtures/snapshots directory and the Gem size
38
+ # went from 295 Kb to 757 Kb!
36
39
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
37
40
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
38
41
  s.require_paths = ['lib']
@@ -57,6 +60,7 @@ And so much more.
57
60
  s.add_runtime_dependency('mime-types', '~> 3.1')
58
61
  s.add_runtime_dependency('mime-types-data', '~> 3.2016.0521')
59
62
  s.add_runtime_dependency('murano-cli-commander', '~> 4.4.7')
63
+ s.add_runtime_dependency('murano-cli-whirly', '~> 0.2.7')
60
64
  #s.add_runtime_dependency('orderedhash', '~> 0.0.6')
61
65
  s.add_runtime_dependency('os', '~> 1.0.0')
62
66
  s.add_runtime_dependency('paint', '~> 2.0.0')
@@ -69,7 +73,6 @@ And so much more.
69
73
  s.add_runtime_dependency('terminal-table', '~> 1.8.0')
70
74
  s.add_runtime_dependency('tty-editor', '~> 0.4.0')
71
75
  s.add_runtime_dependency('vine', '~> 0.4')
72
- s.add_runtime_dependency('whirly', '~> 0.2.4')
73
76
 
74
77
  # `bundle install --with=test`
75
78
  #s.add_development_dependency('bundler', '~> 1.7.6')
data/docs/release.rst CHANGED
@@ -189,6 +189,26 @@ WARNING: You will never again be able to publish another release using the same
189
189
 
190
190
  $ gem yank murano-cli-commander -v ${CUR_VERS}
191
191
 
192
+ ======================================
193
+ Forked Whirly Gem Release Instructions
194
+ ======================================
195
+
196
+ ::
197
+
198
+ CUR_VERS='0.2.7'
199
+
200
+ git tag -a "v${CUR_VERS}" -m "Version ${CUR_VERS}" develop
201
+ git push origin "v${CUR_VERS}"
202
+
203
+ # Test it.
204
+ rake spec
205
+
206
+ # Build it.
207
+ rake gem
208
+
209
+ # Publish it (to Rubygems).
210
+ rake release
211
+
192
212
  ##########################################
193
213
  Troubleshooting Gem Release/Publish Issues
194
214
  ##########################################
@@ -7,9 +7,9 @@
7
7
 
8
8
  require 'highline'
9
9
  require 'inflecto'
10
+ require 'murano-cli-whirly'
10
11
  require 'os'
11
12
  require 'singleton'
12
- require 'whirly'
13
13
 
14
14
  module MrMurano
15
15
  # Progress is a singleton (evil!) that implements a terminal progress bar.
@@ -9,11 +9,11 @@ require 'csv'
9
9
  require 'highline'
10
10
  require 'inflecto'
11
11
  require 'json'
12
+ require 'murano-cli-whirly'
12
13
  require 'os'
13
14
  require 'paint'
14
15
  require 'pp'
15
16
  require 'terminal-table'
16
- require 'whirly'
17
17
  require 'yaml'
18
18
  require 'MrMurano/progress'
19
19
 
@@ -26,7 +26,7 @@ module MrMurano
26
26
  # '3.0.0-beta.2' is changed to '3.0.0.pre.beta.2'
27
27
  # which breaks our build (which expects the version to match herein).
28
28
  # So stick to using the '.pre.X' syntax, which ruby/gems knows.
29
- VERSION = '3.2.1.pre.beta.5'
29
+ VERSION = '3.2.1.pre.beta.6'
30
30
  EXE_NAME = File.basename($PROGRAM_NAME)
31
31
  SIGN_UP_URL = 'https://exosite.com/signup/'
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: MuranoCLI
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1.pre.beta.5
4
+ version: 3.2.1.pre.beta.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Conrad Tadpol Tilstra
@@ -206,6 +206,20 @@ dependencies:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
208
  version: 4.4.7
209
+ - !ruby/object:Gem::Dependency
210
+ name: murano-cli-whirly
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: 0.2.7
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: 0.2.7
209
223
  - !ruby/object:Gem::Dependency
210
224
  name: os
211
225
  requirement: !ruby/object:Gem::Requirement
@@ -318,20 +332,6 @@ dependencies:
318
332
  - - "~>"
319
333
  - !ruby/object:Gem::Version
320
334
  version: '0.4'
321
- - !ruby/object:Gem::Dependency
322
- name: whirly
323
- requirement: !ruby/object:Gem::Requirement
324
- requirements:
325
- - - "~>"
326
- - !ruby/object:Gem::Version
327
- version: 0.2.4
328
- type: :runtime
329
- prerelease: false
330
- version_requirements: !ruby/object:Gem::Requirement
331
- requirements:
332
- - - "~>"
333
- - !ruby/object:Gem::Version
334
- version: 0.2.4
335
335
  - !ruby/object:Gem::Dependency
336
336
  name: byebug
337
337
  requirement: !ruby/object:Gem::Requirement