capistrano_colors 0.5.2 → 0.5.3
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.
data/capistrano_colors.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{capistrano_colors}
|
5
|
-
s.version = "0.5.
|
5
|
+
s.version = "0.5.3"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Mathias Stjernstrom"]
|
9
|
-
s.date = %q{
|
8
|
+
s.authors = ["Mathias Stjernstrom", "Rob Biedenharn"]
|
9
|
+
s.date = %q{2011-01-07}
|
10
10
|
s.description = %q{Simple gem to display colors in capistrano output.}
|
11
|
-
s.email = %
|
12
|
-
s.extra_rdoc_files = ["README.rdoc", "lib/
|
13
|
-
s.files = ["README.rdoc", "Rakefile", "lib/
|
11
|
+
s.email = %w[ mathias@globalinn.com rab@gaslightsoftware.com ]
|
12
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/capistrano_colors/configuration.rb", "lib/capistrano_colors/logger.rb", "lib/capistrano_colors.rb"]
|
13
|
+
s.files = ["README.rdoc", "Rakefile", "lib/capistrano_colors/configuration.rb", "lib/capistrano_colors/logger.rb", "lib/capistrano_colors.rb", "capistrano_colors.gemspec"]
|
14
14
|
s.homepage = %q{http://github.com/stjernstrom/capistrano_colors}
|
15
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Capistrano_colors", "--main", "README.rdoc"]
|
16
16
|
s.require_paths = ["lib"]
|
data/lib/capistrano_colors.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
|
1
|
+
require 'capistrano/configuration'
|
2
|
+
require 'capistrano/logger'
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'capistrano_colors/configuration'
|
5
|
+
require 'capistrano_colors/logger'
|
5
6
|
|
6
7
|
# DEBUG
|
7
8
|
Capistrano::Logger.add_color_matcher({ :match => /executing `.*/, :color => :green, :level => 2, :prio => -10, :prepend => "== Currently " })
|
File without changes
|
metadata
CHANGED
@@ -1,45 +1,59 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano_colors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 13
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 5
|
9
|
+
- 3
|
10
|
+
version: 0.5.3
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Mathias Stjernstrom
|
14
|
+
- Rob Biedenharn
|
8
15
|
autorequire:
|
9
16
|
bindir: bin
|
10
17
|
cert_chain: []
|
11
18
|
|
12
|
-
date:
|
19
|
+
date: 2011-01-07 00:00:00 +01:00
|
13
20
|
default_executable:
|
14
21
|
dependencies:
|
15
22
|
- !ruby/object:Gem::Dependency
|
16
23
|
name: capistrano
|
17
|
-
|
18
|
-
|
19
|
-
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
20
27
|
requirements:
|
21
28
|
- - ">="
|
22
29
|
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 2
|
33
|
+
- 3
|
34
|
+
- 0
|
23
35
|
version: 2.3.0
|
24
|
-
|
36
|
+
type: :development
|
37
|
+
version_requirements: *id001
|
25
38
|
description: Simple gem to display colors in capistrano output.
|
26
|
-
email:
|
39
|
+
email:
|
40
|
+
- mathias@globalinn.com
|
41
|
+
- rab@gaslightsoftware.com
|
27
42
|
executables: []
|
28
43
|
|
29
44
|
extensions: []
|
30
45
|
|
31
46
|
extra_rdoc_files:
|
32
47
|
- README.rdoc
|
33
|
-
- lib/
|
34
|
-
- lib/
|
48
|
+
- lib/capistrano_colors/configuration.rb
|
49
|
+
- lib/capistrano_colors/logger.rb
|
35
50
|
- lib/capistrano_colors.rb
|
36
51
|
files:
|
37
52
|
- README.rdoc
|
38
53
|
- Rakefile
|
39
|
-
- lib/
|
40
|
-
- lib/
|
54
|
+
- lib/capistrano_colors/configuration.rb
|
55
|
+
- lib/capistrano_colors/logger.rb
|
41
56
|
- lib/capistrano_colors.rb
|
42
|
-
- Manifest
|
43
57
|
- capistrano_colors.gemspec
|
44
58
|
has_rdoc: true
|
45
59
|
homepage: http://github.com/stjernstrom/capistrano_colors
|
@@ -56,21 +70,28 @@ rdoc_options:
|
|
56
70
|
require_paths:
|
57
71
|
- lib
|
58
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
59
74
|
requirements:
|
60
75
|
- - ">="
|
61
76
|
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
62
80
|
version: "0"
|
63
|
-
version:
|
64
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
65
83
|
requirements:
|
66
84
|
- - ">="
|
67
85
|
- !ruby/object:Gem::Version
|
86
|
+
hash: 11
|
87
|
+
segments:
|
88
|
+
- 1
|
89
|
+
- 2
|
68
90
|
version: "1.2"
|
69
|
-
version:
|
70
91
|
requirements: []
|
71
92
|
|
72
93
|
rubyforge_project: capistranocolor
|
73
|
-
rubygems_version: 1.3.
|
94
|
+
rubygems_version: 1.3.7
|
74
95
|
signing_key:
|
75
96
|
specification_version: 3
|
76
97
|
summary: Simple gem to display colors in capistrano output.
|