lono 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/files/Guardfile +4 -3
- data/lib/lono/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -98,7 +98,7 @@ You can generate the CF templates by running:
|
|
98
98
|
$ lono generate
|
99
99
|
</pre>
|
100
100
|
|
101
|
-
The lono init
|
101
|
+
The lono init command also sets up guard-lono. Guard-lono continuously generates the cloud formation templates. Just run guard.
|
102
102
|
|
103
103
|
<pre>
|
104
104
|
$ guard
|
data/lib/files/Guardfile
CHANGED
@@ -6,6 +6,7 @@ guard "lono" do
|
|
6
6
|
watch(%r{^templates/.*$})
|
7
7
|
end
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
# Commented out due to CF rate limiting
|
10
|
+
# guard "cloudformation", :templates_path => "output" do
|
11
|
+
# watch(%r{^output/.+\.json$})
|
12
|
+
# end
|
data/lib/lono/version.rb
CHANGED