teapot 1.0.0.pre.rc1 → 1.0.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/teapot +4 -3
- 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: 0d7c20a482c6670c0fe2b19c59782d91efe686e3
|
4
|
+
data.tar.gz: 5611278beb38b4eb2eada3e89f39073f19f8ec4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c364d152e5f88d7370a7102e5402a492d5f0ad54b9252a28fda8ce41ee9ed2d6bd99f2a655110f89741672a7611c7ca9a3e98e8e71c9e5bbdc75589777dd0c73
|
7
|
+
data.tar.gz: a1d5028a6ce5a8dc97739353e42d2c687fadae3a2189d79b7a21412b3de7e03dbc1e6e5ddf889818e424141603498225a9e744c99641a674d2e1ddcc2460fa32
|
data/bin/teapot
CHANGED
@@ -37,17 +37,18 @@ require 'trollop'
|
|
37
37
|
OPTIONS = Trollop::options do
|
38
38
|
version "teapot v#{Teapot::VERSION}"
|
39
39
|
|
40
|
+
opt :configuration, "Specify a specific build configuration.", :type => :string
|
41
|
+
|
40
42
|
opt :only, "Only compiled direct dependencies."
|
41
|
-
opt :continuous, "Run the build graph continually.", :type => :boolean
|
43
|
+
opt :continuous, "Run the build graph continually.", :type => :boolean, :short => :n
|
42
44
|
|
43
45
|
opt :in, "Work in the given directory.", :type => :string
|
44
46
|
opt :unlock, "Don't use package lockfile when fetching."
|
45
47
|
|
46
48
|
opt :force, "Force the operation if it would otherwise be be stopped due to a warning."
|
47
49
|
|
48
|
-
opt :configuration, "Specify a specific build configuration.", :type => :string
|
49
|
-
|
50
50
|
opt :verbose, "Verbose output and error backtraces."
|
51
|
+
opt :version, "Print version and exit", :short => :none
|
51
52
|
end
|
52
53
|
|
53
54
|
def make_controller(root = nil)
|
data/lib/teapot/version.rb
CHANGED