le1t0-capistrano 2.5.18.013 → 2.5.18.014

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.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/VERSION +1 -1
  3. data/bin/cap +5 -3
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 2.5.18.014 / Jul 27, 2010
2
+
3
+ Made loading of TeeIO dependent on existence of deploy or deploy:migrations in ARGV
4
+
1
5
  == 2.5.18.013 / Jul 23, 2010
2
6
 
3
7
  Readded TeeIO.tee_all call to bin/cap, but added tee_all_on and tee_all_of functionality.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.5.18.013
1
+ 2.5.18.014
data/bin/cap CHANGED
@@ -1,7 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'capistrano/cli'
4
- require 'capistrano/cli/tee_io'
5
- TeeIO.tee_all
6
- TeeIO.tee_all_off
4
+ if ARGV.any? { |arg| [ "deploy", "deploy:migrations" ].include?(arg) }
5
+ require 'capistrano/cli/tee_io'
6
+ TeeIO.tee_all
7
+ TeeIO.tee_all_off
8
+ end
7
9
  Capistrano::CLI.execute
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 2
7
7
  - 5
8
8
  - 18
9
- - 13
10
- version: 2.5.18.013
9
+ - 14
10
+ version: 2.5.18.014
11
11
  platform: ruby
12
12
  authors:
13
13
  - Le1t0
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-07-23 00:00:00 +02:00
18
+ date: 2010-07-27 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency