cook 2.0.7 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
data/README.txt CHANGED
@@ -48,6 +48,9 @@ or
48
48
  to cook the update task with the additional dev or prod
49
49
  configurations.
50
50
 
51
+ (The alternate command cookTrace is equivilant to "cook --trace -v" and
52
+ provides considerably more output).
53
+
51
54
  == REQUIREMENTS:
52
55
 
53
56
  * rake
data/bin/cook CHANGED
@@ -37,8 +37,4 @@ require 'rake/extensions.rb'; # provides mesg used by others
37
37
  require 'rake/config.rb';
38
38
  require 'rake/cookUtils.rb';
39
39
 
40
- # simulate the --trace option
41
- Rake.application.options.trace = true;
42
- Rake.verbose(true);
43
-
44
40
  Rake.application.run
data/bin/cookTrace ADDED
@@ -0,0 +1,44 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ #--
4
+ #
5
+ # Copyright (c) 2014 Stephen Gaito
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining
8
+ # a copy of this software and associated documentation files (the
9
+ # "Software"), to deal in the Software without restriction, including
10
+ # without limitation the rights to use, copy, modify, merge, publish,
11
+ # distribute, sublicense, and/or sell copies of the Software, and to
12
+ # permit persons to whom the Software is furnished to do so, subject to
13
+ # the following conditions:
14
+ #
15
+ # The above copyright notice and this permission notice shall be
16
+ # included in all copies or substantial portions of the Software.
17
+ #
18
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
22
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ # SOFTWARE.
26
+ #
27
+ # ++
28
+
29
+ begin
30
+ require 'rubygems';
31
+ gem 'rake';
32
+ rescue LoadError
33
+ end
34
+
35
+ require 'rake'
36
+ require 'rake/extensions.rb'; # provides mesg used by others
37
+ require 'rake/config.rb';
38
+ require 'rake/cookUtils.rb';
39
+
40
+ # simulate the --trace option
41
+ Rake.application.options.trace = true;
42
+ Rake.verbose(true);
43
+
44
+ Rake.application.run
data/lib/cook.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Cook
2
- VERSION = '2.0.7'
2
+ VERSION = '2.0.8'
3
3
  end
data/lib/rake/config.rb CHANGED
@@ -668,6 +668,7 @@ module Rake
668
668
  end
669
669
 
670
670
  Rake::Application.mesg args.join(' ') if $TRACE
671
+ Rake::Application.mesg "Timeout: #{options[:timeout]}" if $TRACE
671
672
  Rake::Application.mesg "#{options}" if $TRACE && !options.empty?() && options.has_key?(:verbose);
672
673
 
673
674
  asyncTriggersBlocks = Array.new;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cook
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-04-23 00:00:00.000000000 Z
12
+ date: 2014-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -153,6 +153,7 @@ executables:
153
153
  - cook
154
154
  - cookDecrypt
155
155
  - cookEncrypt
156
+ - cookTrace
156
157
  extensions: []
157
158
  extra_rdoc_files:
158
159
  - Manifest.txt
@@ -167,6 +168,7 @@ files:
167
168
  - bin/cook
168
169
  - bin/cookDecrypt
169
170
  - bin/cookEncrypt
171
+ - bin/cookTrace
170
172
  - lib/cook.rb
171
173
  - lib/rake/config.rb
172
174
  - lib/rake/cookUtils.rb