File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change
1
+ v0.2.1
2
+ ------
3
+
4
+ * option :ignore_errors; default => true
5
+ * fix string parsing
6
+
7
+
1
8
v0.2.0
2
9
------
3
10
Original file line number Diff line number Diff line change 2
2
# vi: fenc=utf-8:expandtab:ts=2:sw=2:sts=2
3
3
#
4
4
# @author: Petr Kovar <pejuko@gmail.com>
5
- $KCODE= 'UTF8'
5
+ $KCODE= 'UTF8' if RUBY_VERSION < "1.9"
6
6
7
7
require 'rake/gempackagetask'
8
8
require 'rake/testtask'
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ spec = Gem::Specification.new do |s|
13
13
s . email = "pejuko@gmail.com"
14
14
s . authors = [ "Petr Kovar" ]
15
15
s . name = 'coderay_bash'
16
- s . version = '0.2.0 '
16
+ s . version = '0.2.1 '
17
17
s . date = Time . now . strftime ( "%Y-%m-%d" )
18
18
s . add_dependency ( 'coderay' , '< 1.0' )
19
19
s . require_path = 'lib'
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
# vi: fenc=utf-8:expandtab:ts=2:sw=2:sts=2
3
3
4
- $KCODE= 'UTF8'
4
+ $KCODE= 'UTF8' if RUBY_VERSION < "1.9"
5
5
6
6
require 'test/unit'
7
7
require 'rubygems'
You can’t perform that action at this time.
0 commit comments