capistrano_colors 0.5.3 → 0.5.4
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/Manifest +7 -0
- data/Rakefile +1 -1
- data/capistrano_colors.gemspec +8 -8
- data/lib/capistrano_colors/logger.rb +1 -1
- metadata +9 -11
data/Manifest
ADDED
data/Rakefile
CHANGED
|
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
|
2
2
|
require 'rake'
|
|
3
3
|
require 'echoe'
|
|
4
4
|
|
|
5
|
-
Echoe.new('capistrano_colors', '0.5.
|
|
5
|
+
Echoe.new('capistrano_colors', '0.5.4') do |p|
|
|
6
6
|
p.description = "Simple gem to display colors in capistrano output."
|
|
7
7
|
p.url = "http://github.com/stjernstrom/capistrano_colors"
|
|
8
8
|
p.author = "Mathias Stjernstrom"
|
data/capistrano_colors.gemspec
CHANGED
|
@@ -2,27 +2,27 @@
|
|
|
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.4"
|
|
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{2011-
|
|
8
|
+
s.authors = ["Mathias Stjernstrom"]
|
|
9
|
+
s.date = %q{2011-03-17}
|
|
10
10
|
s.description = %q{Simple gem to display colors in capistrano output.}
|
|
11
|
-
s.email = %
|
|
12
|
-
s.extra_rdoc_files = ["README.rdoc", "lib/capistrano_colors
|
|
13
|
-
s.files = ["README.rdoc", "Rakefile", "lib/capistrano_colors
|
|
11
|
+
s.email = %q{mathias@globalinn.com}
|
|
12
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/capistrano_colors.rb", "lib/capistrano_colors/configuration.rb", "lib/capistrano_colors/logger.rb"]
|
|
13
|
+
s.files = ["README.rdoc", "Rakefile", "capistrano_colors.gemspec", "lib/capistrano_colors.rb", "lib/capistrano_colors/configuration.rb", "lib/capistrano_colors/logger.rb", "Manifest"]
|
|
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"]
|
|
17
17
|
s.rubyforge_project = %q{capistranocolor}
|
|
18
|
-
s.rubygems_version = %q{1.3.
|
|
18
|
+
s.rubygems_version = %q{1.3.7}
|
|
19
19
|
s.summary = %q{Simple gem to display colors in capistrano output.}
|
|
20
20
|
|
|
21
21
|
if s.respond_to? :specification_version then
|
|
22
22
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
23
23
|
s.specification_version = 3
|
|
24
24
|
|
|
25
|
-
if Gem::Version.new(Gem::
|
|
25
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
26
|
s.add_development_dependency(%q<capistrano>, [">= 2.3.0"])
|
|
27
27
|
else
|
|
28
28
|
s.add_dependency(%q<capistrano>, [">= 2.3.0"])
|
|
@@ -37,7 +37,7 @@ module Capistrano
|
|
|
37
37
|
@@sorted_color_matchers.each do |filter|
|
|
38
38
|
|
|
39
39
|
if (filter[:level] == level || filter[:level].nil?)
|
|
40
|
-
if message =~ filter[:match]
|
|
40
|
+
if message =~ filter[:match] || line_prefix =~ filter[:match]
|
|
41
41
|
color = filter[:color]
|
|
42
42
|
attribute = filter[:attribute]
|
|
43
43
|
message = filter[:prepend] + message unless filter[:prepend].nil?
|
metadata
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano_colors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.5.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Mathias Stjernstrom
|
|
14
|
-
- Rob Biedenharn
|
|
15
14
|
autorequire:
|
|
16
15
|
bindir: bin
|
|
17
16
|
cert_chain: []
|
|
18
17
|
|
|
19
|
-
date: 2011-
|
|
18
|
+
date: 2011-03-17 00:00:00 +01:00
|
|
20
19
|
default_executable:
|
|
21
20
|
dependencies:
|
|
22
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -36,25 +35,24 @@ dependencies:
|
|
|
36
35
|
type: :development
|
|
37
36
|
version_requirements: *id001
|
|
38
37
|
description: Simple gem to display colors in capistrano output.
|
|
39
|
-
email:
|
|
40
|
-
- mathias@globalinn.com
|
|
41
|
-
- rab@gaslightsoftware.com
|
|
38
|
+
email: mathias@globalinn.com
|
|
42
39
|
executables: []
|
|
43
40
|
|
|
44
41
|
extensions: []
|
|
45
42
|
|
|
46
43
|
extra_rdoc_files:
|
|
47
44
|
- README.rdoc
|
|
45
|
+
- lib/capistrano_colors.rb
|
|
48
46
|
- lib/capistrano_colors/configuration.rb
|
|
49
47
|
- lib/capistrano_colors/logger.rb
|
|
50
|
-
- lib/capistrano_colors.rb
|
|
51
48
|
files:
|
|
52
49
|
- README.rdoc
|
|
53
50
|
- Rakefile
|
|
51
|
+
- capistrano_colors.gemspec
|
|
52
|
+
- lib/capistrano_colors.rb
|
|
54
53
|
- lib/capistrano_colors/configuration.rb
|
|
55
54
|
- lib/capistrano_colors/logger.rb
|
|
56
|
-
-
|
|
57
|
-
- capistrano_colors.gemspec
|
|
55
|
+
- Manifest
|
|
58
56
|
has_rdoc: true
|
|
59
57
|
homepage: http://github.com/stjernstrom/capistrano_colors
|
|
60
58
|
licenses: []
|