ruco 0.2.0.beta3 → 0.2.0.beta4
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/VERSION +1 -1
- data/bin/ruco +2 -1
- data/ruco.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.0.
|
|
1
|
+
0.2.0.beta4
|
data/bin/ruco
CHANGED
|
@@ -51,7 +51,8 @@ options = parse_options
|
|
|
51
51
|
$ruco_colors = (
|
|
52
52
|
not options[:no_colors] and
|
|
53
53
|
RbConfig::CONFIG['host_os'] !~ /mswin|mingw/ and # windows
|
|
54
|
-
ENV['TERM'] != 'rxvt'
|
|
54
|
+
ENV['TERM'] != 'rxvt' and
|
|
55
|
+
(ENV['TERM'] != 'xterm' or ENV['COLORTERM']) # we can convert xterm to xterm-256colors if COLORTERM is given
|
|
55
56
|
# and ENV['TERM'] !~ /-color$/ # it seems many lion users set xterm-color to fix bugs ...
|
|
56
57
|
)
|
|
57
58
|
|
data/ruco.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ruco}
|
|
8
|
-
s.version = "0.2.0.
|
|
8
|
+
s.version = "0.2.0.beta4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Michael Grosser"]
|
|
12
|
-
s.date = %q{2011-09-
|
|
12
|
+
s.date = %q{2011-09-25}
|
|
13
13
|
s.default_executable = %q{ruco}
|
|
14
14
|
s.email = %q{michael@grosser.it}
|
|
15
15
|
s.executables = ["ruco"]
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruco
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 62196363
|
|
5
5
|
prerelease: 6
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
9
|
- 0
|
|
10
10
|
- beta
|
|
11
|
-
-
|
|
12
|
-
version: 0.2.0.
|
|
11
|
+
- 4
|
|
12
|
+
version: 0.2.0.beta4
|
|
13
13
|
platform: ruby
|
|
14
14
|
authors:
|
|
15
15
|
- Michael Grosser
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2011-09-
|
|
20
|
+
date: 2011-09-25 00:00:00 +02:00
|
|
21
21
|
default_executable: ruco
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|