MrMurano 1.12.4 → 1.12.5

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
  SHA1:
3
- metadata.gz: 829187e5f5376300757d2664aeab678bf06a23d8
4
- data.tar.gz: ed7366f9e541c631a9c4296e2864445d083466ee
3
+ metadata.gz: 9fe5e38c9b2c538056f57df95816ab20fd4a1756
4
+ data.tar.gz: 9e1914be7ad6e2e4ae0a27fa0b2dcbd70d708678
5
5
  SHA512:
6
- metadata.gz: 260e03ee94c54d047aada8aaeccf7743f2c4dd14e8a73a03acf4b280b0d186292ec100c14084d7720c423e252b36230a01974dbf7e23d8e288daa22e3da92d23
7
- data.tar.gz: a2f1127a5b45e0d6583ab38a40b06154618c1abf823d662194d84bd1b8388396c485d5623d3e9372575c238105d46e20b4beda4c00f066e26f26da2aa52f228e
6
+ metadata.gz: 7f91a6f5544ca3d3df6a3d2ef67a4d2b2ca54e6821d901f1f296bcbbe667a26c13e02ac8a7deaa4069c971b5f6a937058d980b4f23b6be94c462af8a0a245d4d
7
+ data.tar.gz: e9b6bbb35046bb11094e390e69f429b7f7962da41eafcea53e441a83df403cd3e7f43b1c73ff854a6562683290977ce56ccfe5fa0e251bc8975f20bf69679c2e
data/README.markdown CHANGED
@@ -13,6 +13,11 @@ product definitions at once, set up endpoints and APIs, and more.
13
13
  MrMurano works around the idea of syncing, much like rsync. Files from your project
14
14
  directory are synced up (or down) from Murano.
15
15
 
16
+ !!!!! *IMPORTANT*
17
+
18
+ The upcoming release of 2.0 will include some breaking changes. The most noticable
19
+ of which is the command will be renamed from `mr` to `murano`.
20
+
16
21
  ## Usage
17
22
 
18
23
  ### To start from an existing project in Murano
data/Rakefile CHANGED
@@ -42,7 +42,6 @@ namespace :git do
42
42
  task :all => [:origin, :upstream]
43
43
  end
44
44
 
45
- desc "Build, install locally, and push gem"
46
45
  task :gemit do
47
46
  mrt=Bundler::GemHelper.gemspec.version
48
47
  sh %{git checkout v#{mrt}}
@@ -16,6 +16,7 @@ command :account do |c|
16
16
  acc = MrMurano::Account.new
17
17
 
18
18
  if options.businesses then
19
+ acc.warning "--business is deprecated; please use `mr business list` instead"
19
20
  data = acc.businesses
20
21
  if options.idonly then
21
22
  say data.map{|row| row[:bizid]}.join(' ')
@@ -26,6 +27,7 @@ command :account do |c|
26
27
  end
27
28
 
28
29
  elsif options.products then
30
+ acc.warning "--products is deprecated; please use `mr products list` instead"
29
31
  data = acc.products
30
32
  if options.idonly then
31
33
  say data.map{|row| row[:pid]}.join(' ')
@@ -36,6 +38,7 @@ command :account do |c|
36
38
  end
37
39
 
38
40
  elsif options.solutions then
41
+ acc.warning "--solutions is deprecated; please use `mr solutions list` instead"
39
42
  data = acc.solutions
40
43
  if options.idonly then
41
44
  say data.map{|row| row[:apiId]}.join(' ')
@@ -18,7 +18,7 @@ command 'business list' do |c|
18
18
 
19
19
  if options.idonly then
20
20
  headers = [:bizid]
21
- data = data.map{|row| [row[:modelId]]}
21
+ data = data.map{|row| [row[:bizid]]}
22
22
  elsif not options.all then
23
23
  headers = [:bizid, :role, :name]
24
24
  data = data.map{|r| [r[:bizid], r[:role], r[:name]]}
@@ -1,4 +1,4 @@
1
1
  module MrMurano
2
- VERSION = '1.12.4'.freeze
2
+ VERSION = '1.12.5'.freeze
3
3
  end
4
4
 
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.12.4
4
+ version: 1.12.5
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-02-02 00:00:00.000000000 Z
11
+ date: 2017-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander