kondate 0.1.8 → 0.1.9

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: 6a9605a90f78185ff6e4d2df884475de022588a2
4
- data.tar.gz: 7a93f919b539c076ed91fe53df2dfd412333639c
3
+ metadata.gz: 871ab4c152c327b20f7cd8161060130dd43a53ac
4
+ data.tar.gz: a81682d8ddab3188fa65e3a34b168b9b158af25b
5
5
  SHA512:
6
- metadata.gz: 37b36d546de115955adc4fad746c25be247e4dbb32ba558a1834aadd2331aac1ac06cd7eb99692487a463fd35cfdb666437375fa067967f153e47e035046b4e8
7
- data.tar.gz: 7b48f9aa9f1063059c7cf95731841936b01154c3860044f46c7e968a3093d521238b46970bd601133b4e6cb0969e305d4e0a23e154858d37b7e25f8c688bc3c7
6
+ metadata.gz: 09ba01a58f0d283e190a53f6464a71fd4aebb2292f868478406fe87e0621622435d211f97cf278e9d9ddfd9f3a4780f3cba0c39623047e42049c9cca80f4222c
7
+ data.tar.gz: d868fd6d2978fee238b35e90bc7d829251aa3df6eba1aff809881b98a722ab9c4d9f80fefe9513ba4d301e7409aecac4422f7c99a7909ea73f871a8ba3456b05
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # 0.1.9 (2015-12-11)
2
+
3
+ Enhancments:
4
+
5
+ * Support itamae --profile option
6
+ * Support itamae --recipe-graph option
7
+
1
8
  # 0.1.8 (2015-12-09)
2
9
 
3
10
  Changes:
data/README.md CHANGED
@@ -327,6 +327,10 @@ host_plugin:
327
327
 
328
328
  `config.type` and `config.path` is available in the above config.
329
329
 
330
+ ## See Also
331
+
332
+ * [Itamae meetup #1 で「ぼくのかんがえた Itamae/Serverspec 構成フレームワーク 〜 板前の献立 〜」というトークをしてきた](http://blog.livedoor.jp/sonots/archives/46245484.html) (Japanese)
333
+
330
334
  ## Development
331
335
 
332
336
  ```
data/lib/kondate/cli.rb CHANGED
@@ -52,6 +52,8 @@ module Kondate
52
52
  option :debug, :aliases => ["-d"], :type => :boolean, :default => false
53
53
  option :confirm, :type => :boolean, :default => true
54
54
  option :vagrant, :type => :boolean, :default => false
55
+ option :profile, :type => :string, :default => nil, :desc => "[EXPERIMENTAL] Save profiling data", :banner => "PATH"
56
+ option :recipe_graph, :type => :string, :default => nil, :desc => "[EXPERIMENTAL] Write recipe dependency graph in DOT", :banner => "PATH"
55
57
  def itamae(host)
56
58
  builder, property_files = build_property_files(host)
57
59
 
@@ -75,6 +77,8 @@ module Kondate
75
77
  command << " -y #{property_file}"
76
78
  command << " -l=debug" if @options[:debug]
77
79
  command << " --dry-run" if @options[:dry_run]
80
+ command << " --profile=#{@options[:profile]}" if @options[:profile]
81
+ command << " --recipe-graph=#{@options[:recipe_graph]}" if @options[:recipe_graph]
78
82
  command << " bootstrap.rb"
79
83
  $stdout.puts command
80
84
  exit(-1) unless system(command)
@@ -1,3 +1,3 @@
1
1
  module Kondate
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kondate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - sonots
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-08 00:00:00.000000000 Z
11
+ date: 2015-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae