sfn 0.5.0 → 1.0.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/CHANGELOG.md +19 -8
- data/README.md +85 -53
- data/bin/generate_sfn_docs +37 -0
- data/lib/sfn/callback/stack_policy.rb +94 -0
- data/lib/sfn/callback.rb +48 -0
- data/lib/sfn/command/create.rb +19 -20
- data/lib/sfn/command/describe.rb +16 -10
- data/lib/sfn/command/destroy.rb +8 -3
- data/lib/sfn/command/events.rb +24 -22
- data/lib/sfn/command/inspect.rb +8 -6
- data/lib/sfn/command/update.rb +49 -72
- data/lib/sfn/command/validate.rb +30 -4
- data/lib/sfn/command.rb +8 -5
- data/lib/sfn/command_module/base.rb +17 -2
- data/lib/sfn/command_module/callbacks.rb +69 -0
- data/lib/sfn/command_module/stack.rb +107 -9
- data/lib/sfn/command_module/template.rb +201 -129
- data/lib/sfn/command_module.rb +1 -0
- data/lib/sfn/config/update.rb +0 -4
- data/lib/sfn/config/validate.rb +12 -2
- data/lib/sfn/monkey_patch/stack.rb +72 -0
- data/lib/sfn/utils/path_selector.rb +3 -0
- data/lib/sfn/version.rb +1 -1
- data/lib/sfn.rb +1 -0
- data/sfn.gemspec +8 -10
- metadata +19 -22
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sfn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Roberts
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bogo-cli
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.2.
|
33
|
+
version: 0.2.27
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.2.
|
40
|
+
version: 0.2.27
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: miasma-aws
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -70,20 +70,14 @@ dependencies:
|
|
70
70
|
name: sparkle_formation
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 0.4.0
|
76
|
-
- - "<"
|
73
|
+
- - "~>"
|
77
74
|
- !ruby/object:Gem::Version
|
78
75
|
version: '1.0'
|
79
76
|
type: :runtime
|
80
77
|
prerelease: false
|
81
78
|
version_requirements: !ruby/object:Gem::Requirement
|
82
79
|
requirements:
|
83
|
-
- - "
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
version: 0.4.0
|
86
|
-
- - "<"
|
80
|
+
- - "~>"
|
87
81
|
- !ruby/object:Gem::Version
|
88
82
|
version: '1.0'
|
89
83
|
description: SparkleFormation CLI
|
@@ -96,10 +90,13 @@ files:
|
|
96
90
|
- CHANGELOG.md
|
97
91
|
- LICENSE
|
98
92
|
- README.md
|
93
|
+
- bin/generate_sfn_docs
|
99
94
|
- bin/sfn
|
100
95
|
- lib/chef/knife/knife_plugin_seed.rb
|
101
96
|
- lib/sfn.rb
|
102
97
|
- lib/sfn/cache.rb
|
98
|
+
- lib/sfn/callback.rb
|
99
|
+
- lib/sfn/callback/stack_policy.rb
|
103
100
|
- lib/sfn/command.rb
|
104
101
|
- lib/sfn/command/create.rb
|
105
102
|
- lib/sfn/command/describe.rb
|
@@ -114,6 +111,7 @@ files:
|
|
114
111
|
- lib/sfn/command/validate.rb
|
115
112
|
- lib/sfn/command_module.rb
|
116
113
|
- lib/sfn/command_module/base.rb
|
114
|
+
- lib/sfn/command_module/callbacks.rb
|
117
115
|
- lib/sfn/command_module/stack.rb
|
118
116
|
- lib/sfn/command_module/template.rb
|
119
117
|
- lib/sfn/config.rb
|
@@ -147,18 +145,16 @@ homepage: http://github.com/sparkleformation/sfn
|
|
147
145
|
licenses:
|
148
146
|
- Apache-2.0
|
149
147
|
metadata: {}
|
150
|
-
post_install_message: |2
|
148
|
+
post_install_message: |2+
|
149
|
+
|
150
|
+
This is an install of the sfn gem from the 1.0 release tree. If you
|
151
|
+
are upgrading from a pre-1.0 version, please review the CHANGELOG and
|
152
|
+
test your environment _before_ continuing on!
|
151
153
|
|
152
|
-
|
153
|
-
1.0 release. That's great for now but it means many features will not be available
|
154
|
-
and only fixes will be backported and applied to this gem.
|
154
|
+
* https://github.com/sparkleformation/sfn/blob/master/CHANGELOG.md
|
155
155
|
|
156
|
-
|
157
|
-
advantage of new features and new development. This gem will continue on in
|
158
|
-
maintenance mode for the near term future. Once EOL has been reached, this message
|
159
|
-
will be updated.
|
156
|
+
Happy stacking!
|
160
157
|
|
161
|
-
Thanks and happy stacking!
|
162
158
|
rdoc_options: []
|
163
159
|
require_paths:
|
164
160
|
- lib
|
@@ -174,8 +170,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
170
|
version: '0'
|
175
171
|
requirements: []
|
176
172
|
rubyforge_project:
|
177
|
-
rubygems_version: 2.
|
173
|
+
rubygems_version: 2.2.2
|
178
174
|
signing_key:
|
179
175
|
specification_version: 4
|
180
176
|
summary: SparkleFormation CLI
|
181
177
|
test_files: []
|
178
|
+
has_rdoc:
|