From 90f5644f7f20442f59a99c203a0d3b1716c5aec7 Mon Sep 17 00:00:00 2001 From: ymrl Date: Tue, 29 Apr 2014 19:01:43 +0900 Subject: [PATCH] Disable 1.8 --- README.rdoc | 3 +-- lib/romankana/version.rb | 2 +- romankana.gemspec | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rdoc b/README.rdoc index 8d62f05..dac561f 100644 --- a/README.rdoc +++ b/README.rdoc @@ -26,8 +26,7 @@ Roman Alphabet <-> Japanese Hiragana/Katkakana Convert Library for Ruby == REQUIREMENTS: -* ruby (VERSION >= 1.8.7) - * but 1.8 makes some encoding erros caused by NKF. please use on 1.9 +* ruby (VERSION >= 1.9) == INSTALL: gem install romankana diff --git a/lib/romankana/version.rb b/lib/romankana/version.rb index 430f759..3045bb8 100644 --- a/lib/romankana/version.rb +++ b/lib/romankana/version.rb @@ -1,3 +1,3 @@ module RomanKana - VERSION = '0.2.0' + VERSION = '0.2.1' end diff --git a/romankana.gemspec b/romankana.gemspec index 5c9b54c..9d7b5dc 100644 --- a/romankana.gemspec +++ b/romankana.gemspec @@ -11,6 +11,7 @@ Gem::Specification.new do |spec| spec.description = spec.summary spec.homepage = "https://github.com/ymrl/romankana" spec.license = "MIT" + spec.required_ruby_version = ">= 1.9" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }