kondate 0.1.8 → 0.1.9
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/CHANGELOG.md +7 -0
- data/README.md +4 -0
- data/lib/kondate/cli.rb +4 -0
- data/lib/kondate/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 871ab4c152c327b20f7cd8161060130dd43a53ac
|
|
4
|
+
data.tar.gz: a81682d8ddab3188fa65e3a34b168b9b158af25b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 09ba01a58f0d283e190a53f6464a71fd4aebb2292f868478406fe87e0621622435d211f97cf278e9d9ddfd9f3a4780f3cba0c39623047e42049c9cca80f4222c
|
|
7
|
+
data.tar.gz: d868fd6d2978fee238b35e90bc7d829251aa3df6eba1aff809881b98a722ab9c4d9f80fefe9513ba4d301e7409aecac4422f7c99a7909ea73f871a8ba3456b05
|
data/CHANGELOG.md
CHANGED
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)
|
data/lib/kondate/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2015-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: itamae
|