aozora 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.
- data/lib/aozora/base.rb +4 -1
- data/lib/aozora/version.rb +1 -1
- metadata +2 -2
data/lib/aozora/base.rb
CHANGED
@@ -206,7 +206,10 @@ class Aozora
|
|
206
206
|
def read_file(title, length)
|
207
207
|
dir = File.expand_path(File.dirname(__FILE__))
|
208
208
|
filename = dir+"/../../data/#{title}.txt"
|
209
|
-
|
209
|
+
|
210
|
+
# Ruby1.9(Linux)版への回避策。UTF-8を指定する
|
211
|
+
# File.open(filename) do |full_sign|
|
212
|
+
File.open(filename, "r:utf-8") do |full_sign|
|
210
213
|
text = String.new
|
211
214
|
loop do
|
212
215
|
while (line = full_sign.gets) == nil
|
data/lib/aozora/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aozora
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-10-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|