MrMurano 1.12.8 → 1.13.0
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/MrMurano.gemspec +7 -1
- data/bin/mr +4 -0
- data/lib/MrMurano/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7a3870ce5ac8e21bc40dd1d207764a0832850e0
|
4
|
+
data.tar.gz: 02b310edb44da3dc72b10c340bdddfc79e7c5bf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17a3e1c4c3fd42124852798fd0d248ee6e40dafe8f962dc5dac9718fa5edc636e50a4a54b3144af61bd91eb44e4c018da015049e0fbdde1eb318072f3012bd58
|
7
|
+
data.tar.gz: ef5c44c7bf347c4ac5a77780c835a78a937af8296b15fa5e8f86c3cb2ca7150de2dc0b8a051d440332fccd9220887b4703aeda6dad3d79313f3b1454939f030a
|
data/MrMurano.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ['Michael Conrad Tadpol Tilstra']
|
9
9
|
s.email = ['tadpol@tadpol.org']
|
10
10
|
s.license = 'MIT'
|
11
|
-
s.homepage = 'https://github.com/exosite/
|
11
|
+
s.homepage = 'https://github.com/exosite/MuranoCLI'
|
12
12
|
s.summary = 'Do more from the command line with Murano'
|
13
13
|
s.description = %{Do more from the command line with Murano
|
14
14
|
|
@@ -38,6 +38,12 @@ Gem::Specification.new do |s|
|
|
38
38
|
s.add_development_dependency('rspec', '~> 3.5')
|
39
39
|
s.add_development_dependency('webmock', '~> 2.1.0')
|
40
40
|
# maybe? s.add_development_dependency('vcr', '~> ???')
|
41
|
+
|
42
|
+
s.post_install_message = <<-MESSAGE
|
43
|
+
! The 'MrMurano' gem has been deprecated and has been replaced by 'MuranoCLI'.
|
44
|
+
! See: https://rubygems.org/gems/MuranoCLI
|
45
|
+
! And: https://github.com/exosite/MuranoCLI
|
46
|
+
MESSAGE
|
41
47
|
end
|
42
48
|
|
43
49
|
|
data/bin/mr
CHANGED
@@ -45,6 +45,10 @@ global_option('-c', '--config KEY=VALUE', %{Set a single config key}) {|param|
|
|
45
45
|
default_command :help
|
46
46
|
#default_command :syncup
|
47
47
|
|
48
|
+
msg = %{The 'MrMurano' gem has been deprecated and has been replaced by 'MuranoCLI'.}
|
49
|
+
$stderr.puts HighLine.color(msg, :yellow)
|
50
|
+
$stderr.puts HighLine.color('Please upgrade.', :yellow)
|
51
|
+
|
48
52
|
$cfg = MrMurano::Config.new
|
49
53
|
$cfg.load
|
50
54
|
|
data/lib/MrMurano/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: MrMurano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Conrad Tadpol Tilstra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|
@@ -299,11 +299,14 @@ files:
|
|
299
299
|
- spec/fixtures/product_spec_files/lightbulb.yaml
|
300
300
|
- spec/fixtures/roles-three.yaml
|
301
301
|
- spec/spec_helper.rb
|
302
|
-
homepage: https://github.com/exosite/
|
302
|
+
homepage: https://github.com/exosite/MuranoCLI
|
303
303
|
licenses:
|
304
304
|
- MIT
|
305
305
|
metadata: {}
|
306
|
-
post_install_message:
|
306
|
+
post_install_message: |
|
307
|
+
! The 'MrMurano' gem has been deprecated and has been replaced by 'MuranoCLI'.
|
308
|
+
! See: https://rubygems.org/gems/MuranoCLI
|
309
|
+
! And: https://github.com/exosite/MuranoCLI
|
307
310
|
rdoc_options: []
|
308
311
|
require_paths:
|
309
312
|
- lib
|