rcheck 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  pkg
2
+ Gemfile.lock
@@ -7,7 +7,7 @@ module RCheck
7
7
  end
8
8
  end
9
9
 
10
- BARCHAR = RUBY_VERSION >= "2.0.0" ? 220.chr : "."
10
+ BARCHAR = "\u2584"
11
11
 
12
12
  class Bar
13
13
  def report(assertion)
@@ -56,7 +56,7 @@ module RCheck
56
56
  Array(lines).map {|line| (' ' * 11) + line.to_s }
57
57
  end
58
58
 
59
- ARR = RUBY_VERSION >= "2.0.0" ? 175.chr : ">" # double right arrow
59
+ ARR = "\u00bb" # double right arrow
60
60
 
61
61
  def dbg_indent(lines)
62
62
  Array(lines).map {|line| " #{ARR} " + line.to_s }
@@ -1,3 +1,3 @@
1
1
  module RCheck
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcheck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -68,7 +68,6 @@ extra_rdoc_files: []
68
68
  files:
69
69
  - .gitignore
70
70
  - Gemfile
71
- - Gemfile.lock
72
71
  - README.md
73
72
  - Rakefile
74
73
  - TODO
@@ -1,28 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- rcheck (0.1.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- coderay (1.1.0)
10
- method_source (0.8.2)
11
- pry (0.10.2)
12
- coderay (~> 1.1.0)
13
- method_source (~> 0.8.1)
14
- slop (~> 3.4)
15
- rake (10.4.2)
16
- slop (3.6.0)
17
-
18
- PLATFORMS
19
- ruby
20
-
21
- DEPENDENCIES
22
- bundler (~> 1.10)
23
- pry
24
- rake (~> 10.0)
25
- rcheck!
26
-
27
- BUNDLED WITH
28
- 1.10.6