teapot 1.1.1 → 1.1.2
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/lib/teapot/command.rb +1 -1
- data/lib/teapot/controller.rb +5 -0
- data/lib/teapot/controller/create.rb +7 -2
- data/lib/teapot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1ba885e20ffa47e9a547dfff26ae744bab48818
|
|
4
|
+
data.tar.gz: 58ee0e7fe91f9e1d4a8bc9f2738b6db0157cd31c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b43e0131d630c2ead6a7f227d8d0a032668cd7623fe55fbe41c43446ab75709ab0e594b76230d82931fb9a1b424d694e4c47b48560995c67bd5b74eceffb233e
|
|
7
|
+
data.tar.gz: 7d33816958b4074785eed639758e44ff2206c9073c4fea310da6d2ab3a147a6f0a8b42eae26be4e92a0804fb4ca7da2b8f589e7ce29193799408195fda547d79
|
data/lib/teapot/command.rb
CHANGED
data/lib/teapot/controller.rb
CHANGED
|
@@ -50,11 +50,16 @@ module Teapot
|
|
|
50
50
|
output.puts "end", ''
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
# Fetch
|
|
54
|
-
fetch
|
|
53
|
+
# Fetch the initial packages:
|
|
54
|
+
self.fetch
|
|
55
55
|
|
|
56
56
|
# Generate the default project if it is possible to do so:
|
|
57
57
|
generate_project(project_name)
|
|
58
|
+
|
|
59
|
+
self.reload!
|
|
60
|
+
|
|
61
|
+
# Fetch any additional packages:
|
|
62
|
+
self.fetch
|
|
58
63
|
end
|
|
59
64
|
|
|
60
65
|
private
|
data/lib/teapot/version.rb
CHANGED