console-glitter 0.1.0 → 0.1.1
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.
- checksums.yaml +13 -5
- data/lib/console-glitter/ansi.rb +1 -1
- data/lib/console-glitter/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NGFmZWZmMDZjZDA1MjljZTQ4NjIyZjJmODhjZTk3NDIyNjhlNDcwYg==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
MzkzNmEwZjE4OGY5ZmMxNTAwN2I5MGVmODliZDM3YzFlNWZiZTA2Mw==
|
|
5
7
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
YTRhNGFmYTczYjk0YzIyY2JhYjBlNWJkNGE5Mzk2YjFmOWE5YWJhYTQ4NDNi
|
|
10
|
+
ZjMzMjYwMWEzYTRiYmE2ZWZlNDE2ZmY3MjM1NTgxZWZkYWYwZDRjZjEzOTk5
|
|
11
|
+
ZmNhNmVmMmQzZTRlZmE4NzhmYzYyMjY4OGQ5YTU5Njg0Y2Y4Y2M=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
NTM2YzAwNmI0NTZiZjc2YWU5Y2E5OGQxNTU1ZjAwMTA1YWM4NmVkYTIxNWU0
|
|
14
|
+
NGJlZDBlZGMyYzBiNjJmM2RlY2RjMDQ1MTc0ZGVkNTZjMDljNWNjNjQyNGEy
|
|
15
|
+
NjYzZGYyZmMxOTk2Mzk3YjdjNDAzMGNiZmE2MWU3OGEwZjIzZWE=
|
data/lib/console-glitter/ansi.rb
CHANGED
|
@@ -13,7 +13,7 @@ module ConsoleGlitter
|
|
|
13
13
|
#
|
|
14
14
|
# Returns a String.
|
|
15
15
|
def escape(sequence)
|
|
16
|
-
RUBY_PLATFORM =~ /win/i ? '' : "\033[#{sequence}m"
|
|
16
|
+
RUBY_PLATFORM =~ /win|mingw/i ? '' : "\033[#{sequence}m"
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
# Public: Generate an escape sequence to set the foreground color to an
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: console-glitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Wuest
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Tools for building nice looking CLI applications
|
|
14
14
|
email: chris@chriswuest.com
|
|
@@ -29,19 +29,18 @@ require_paths:
|
|
|
29
29
|
- lib
|
|
30
30
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
|
-
- -
|
|
32
|
+
- - ! '>='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
34
|
version: '0'
|
|
35
35
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- -
|
|
37
|
+
- - ! '>='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '0'
|
|
40
40
|
requirements: []
|
|
41
41
|
rubyforge_project:
|
|
42
|
-
rubygems_version: 2.
|
|
42
|
+
rubygems_version: 2.1.11
|
|
43
43
|
signing_key:
|
|
44
44
|
specification_version: 4
|
|
45
45
|
summary: Tools for prettier CLI apps
|
|
46
46
|
test_files: []
|
|
47
|
-
has_rdoc:
|