randwordjp 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 70feb1ad06308a9973a08d1efa3ea4d66ba61b73
4
- data.tar.gz: 6950bd3c1af8e96de3462b5fab2c148e865850cc
3
+ metadata.gz: 528409f317e7bb12f6211829867d7a345aefcf8d
4
+ data.tar.gz: 575e1d2ded025c112d7ae64c40930b5161a921c6
5
5
  SHA512:
6
- metadata.gz: 81b1e861b22622eaa4149e345bf8d5d468ac295a0207ecbf07c519ccd3acbd10f1ef1a344a791dea61499d40c18bfb49976235d12b916a30f8d4c8aaed250e70
7
- data.tar.gz: d60ae98af4e235f25a37657012945c15f5b2d79297c2628db75be671120283b566fe15d581f84d17deaa3a0d4901ea18985ac12774d893303b9bc22309ca1654
6
+ metadata.gz: 6faee0e5d2ec963f239aba8479c06b20acf5bb502dec19f3b0fff4b50b1d971b6c76bc6a5f607766e2430cb6749fa0d015c358a1189562f9a159387351fa02d0
7
+ data.tar.gz: 4dbe56a616454667e27f839e108269857d63b598ad789ce0aa9aa9ba8488256199bdf185e708c6328b388b2a4e8c3a3ad1235233ac72fcfe62ab248632f3a5ba
data/.gitignore CHANGED
@@ -21,3 +21,4 @@ tmp
21
21
  *.a
22
22
  mkmf.log
23
23
  Guardfile
24
+ .rubocop.yml
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.5
data/Gemfile CHANGED
@@ -4,3 +4,4 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem 'guard-rspec'
7
+ gem 'guard-rubocop'
data/Guardfile CHANGED
@@ -12,22 +12,10 @@
12
12
  guard :rspec, cmd: 'bundle exec rspec' do
13
13
  watch(%r{^spec/.+_spec\.rb$})
14
14
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
15
- watch('spec/spec_helper.rb') { "spec" }
16
-
17
- # Rails example
18
- watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
19
- watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
20
- watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
21
- watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
22
- watch('config/routes.rb') { "spec/routing" }
23
- watch('app/controllers/application_controller.rb') { "spec/controllers" }
24
- watch('spec/rails_helper.rb') { "spec" }
25
-
26
- # Capybara features specs
27
- watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
28
-
29
- # Turnip features and steps
30
- watch(%r{^spec/acceptance/(.+)\.feature$})
31
- watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
15
+ watch('spec/spec_helper.rb') { 'spec' }
32
16
  end
33
17
 
18
+ guard :rubocop do
19
+ watch(%r{.+\.rb$})
20
+ watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
21
+ end
data/Rakefile CHANGED
@@ -1,7 +1,6 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
3
 
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
6
- task :default => :spec
7
-
6
+ task default: :spec
@@ -1,3 +1,6 @@
1
+ # Randwordjp
2
+ # ランダムで日本語文字列などを生成するライブラリとなります。
3
+ # can get random words(sentence).
1
4
  module Randwordjp
2
- VERSION = "0.0.7"
5
+ VERSION = '0.0.8'
3
6
  end
data/lib/randwordjp.rb CHANGED
@@ -3,104 +3,106 @@ require 'date'
3
3
  require 'yaml'
4
4
  require 'sqlite3'
5
5
 
6
+ # Randwordjp
7
+ # ランダムで日本語文字列などを生成するライブラリとなります。
8
+ # can get random words(sentence).
6
9
  module Randwordjp
7
- @yamlfile= 'lib/randwordjp.yml'
10
+ @yamlfile = 'lib/randwordjp.yml'
8
11
  @dbfile = 'lib/randwordjp.db'
9
12
 
10
13
  # 半角数字の文字列を取得する
11
- # @param [Integer] length 文字列長
12
- # @return [String] lengthで指定した文字列長の数字文字列
13
- def self.getNumeric( length = 10 )
14
- words = Array.new()
14
+ # @param [Integer] length 文字列長 # @return [String] lengthで指定した文字列長の数字文字列
15
+ def self.numeric(length = 10)
16
+ words = []
15
17
  length.times do
16
- words << ('0'..'9').to_a.sample()
18
+ words << ('0'..'9').to_a.sample
17
19
  end
18
- return words.join
20
+ words.join
19
21
  end
20
22
 
21
23
  # 全角日本語の文字列を取得する。
22
24
  # 漢字は第一水準となる。
23
25
  # @param [Integer] length 文字列長
24
26
  # @return [String] lengthで指定した文字列長の文字列
25
- def self.getZenkakuAll(length = 10 )
26
- words = Array.new()
27
- base = YAML.load_file(@yamlfile)["worddata"]["daiichi"]
27
+ def self.zenkaku_all(length = 10)
28
+ words = []
29
+ base = YAML.load_file(@yamlfile)['worddata']['daiichi']
28
30
  length.times do
29
- words << base.split(//).sample()
31
+ words << base.split(//).sample
30
32
  end
31
- return words.join
33
+ words.join
32
34
  end
33
35
 
34
36
  # 全角カタカナの文字列を取得する。
35
37
  # @param [Integer] length 文字列長
36
38
  # @param [Boolean] opt[:old] 旧仮名文字の利用の可否
37
39
  # @return [String] lengthで指定した文字列長の文字列
38
- def self.getZenkakuKataKana(length = 10, opt = {:old => false})
39
- words = Array.new()
40
+ def self.zenkaku_katakana(length = 10, opt = { old: false })
41
+ words = []
40
42
  if opt[:old]
41
43
  base = ('ア'..'ン').to_a
42
- else
43
- base = ('ア'..'ン').to_a.join.gsub(/ヰヱ/,"").split(//)
44
+ else
45
+ base = ('ア'..'ン').to_a.join.gsub(/ヰヱ/, '').split(//)
44
46
  end
45
47
  length.times do
46
- words << base.sample()
48
+ words << base.sample
47
49
  end
48
- return words.join
50
+ words.join
49
51
  end
50
52
 
51
53
  # 全角ひらがなの文字列を取得する。
52
54
  # @param [Integer] length 文字列長
53
55
  # @param [Boolean] opt[:old] 旧仮名文字の利用の可否
54
56
  # @return [String] lengthで指定した文字列長の文字列
55
- def self.getZenkakuHiraKana(length = 10 , opt = {:old => false})
56
- words = Array.new()
57
+ def self.zenkaku_hirakana(length = 10, opt = { old: false })
58
+ words = []
57
59
  if opt[:old]
58
60
  base = ('あ'..'ん').to_a
59
61
  else
60
- base = ('あ'..'ん').to_a.join.gsub(/ゐゑ/,"").split(//)
62
+ base = ('あ'..'ん').to_a.join.gsub(/ゐゑ/, '').split(//)
61
63
  end
62
64
  length.times do
63
- words << base.sample()
65
+ words << base.sample
64
66
  end
65
- return words.join
67
+ words.join
66
68
  end
67
69
 
68
70
  # ローマ字の文字列を取得する。
69
71
  # @param [Integer] length 文字列長
70
72
  # @return [String] lengthで指定した文字列長の文字列
71
- def self.getAlphabet(length = 10 )
72
- words = Array.new()
73
+ def self.alphabet(length = 10)
74
+ words = []
73
75
  base = ('a'..'z').to_a
74
76
  length.times do
75
- words << base.sample()
77
+ words << base.sample
76
78
  end
77
- return words.join
79
+ words.join
78
80
  end
79
81
 
80
82
  # 数字+ローマ字の文字列を取得する。
81
83
  # @param [Integer] length 文字列長
82
84
  # @return [String] lengthで指定した文字列長の文字列
83
- def self.getAlphanumeric(length = 10 )
84
- words = Array.new()
85
+ def self.alphanumeric(length = 10)
86
+ words = []
85
87
  base = ('0'..'9').to_a + ('a'..'z').to_a
86
- words << getAlphabet(1)
88
+ words << alphabet(1)
87
89
  length.times do
88
- words << base.sample()
90
+ words << base.sample
89
91
  end
90
- return words.join
92
+ words.join
91
93
  end
92
94
 
93
95
  # 数字+ローマ字+記号(-_)の文字列を取得する。
94
96
  # @param [Integer] length 文字列長
95
97
  # @return [String] lengthで指定した文字列長の文字列
96
- def self.getAlphanumericPlus(length = 10 )
97
- words = Array.new()
98
- base = ('0'..'9').to_a + ('a'..'z').to_a + ["-", "_"]
99
- words << getAlphabet(1)
98
+ def self.alphanumeric_plus(length = 10)
99
+ words = []
100
+ base = ('0'..'9').to_a + ('a'..'z').to_a + ['-', '_']
101
+ words << alphabet(1)
100
102
  (length - 1).times do
101
- words << base.sample()
103
+ words << base.sample
102
104
  end
103
- return words.join
105
+ words.join
104
106
  end
105
107
 
106
108
  # メールアドレス風の文字列を取得する。
@@ -108,56 +110,54 @@ module Randwordjp
108
110
  # @param [Integer] local_length ローカルパートの文字列長
109
111
  # @param [Integer] domain_lengh ドメインパートの文字列長
110
112
  # @return [String] lengthで指定した文字列長の文字列
111
- def self.getMailAddress(randword = "rand",local_length = 10, domain_length = 10)
112
- local_part = getAlphanumericPlus(rand(local_length)+1)
113
- domain_part = getAlphanumeric(rand(domain_length)+1) + "." + randword
114
- return local_part + "@" + domain_part
113
+ def self.mail_address(randword = 'rand', local_length = 10, domain_length = 10)
114
+ local_part = alphanumeric_plus(rand(local_length) + 1)
115
+ domain_part = alphanumeric(rand(domain_length) + 1) + '.' + randword
116
+ local_part + '@' + domain_part
115
117
  end
116
118
 
117
-
118
119
  # Date型の日付を取得する。
119
120
  # @param [Date] date 指定日
120
121
  # @param [Integer] before 指定日より後の最大何日までを対象とする
121
122
  # @param [Integer] afute 指定日より前の最大何日までを対象とする
122
123
  # @return [Date] 日付を取得する
123
- def self.getDate(date = Date.today, before = 100, after = 100 )
124
- return (date + (rand(after))- (rand(before))).to_s
124
+ def self.date(date = Date.today, before = 100, after = 100)
125
+ (date + (rand(after)) - (rand(before))).to_s
125
126
  end
126
127
 
127
128
  # String型の都道府県名を取得する
128
129
  # @return [String] 都道府県名
129
- def self.getTodofuken()
130
- todofuken_list = YAML.load_file(@yamlfile)["worddata"]["todofuken_list"]
131
- return todofuken_list.sample()
130
+ def self.todofuken
131
+ todofuken_list = YAML.load_file(@yamlfile)['worddata']['todofuken_list']
132
+ todofuken_list.sample
132
133
  end
133
134
 
134
135
  # Hash型の苗字データを取得する
135
136
  # @return [Hash] {:kanji => 漢字名, :kana => 読み仮名}
136
- def self.getMyoji()
137
+ def self.myoji
137
138
  db = SQLite3::Database.new(@dbfile)
138
- sql = "select count(*) from myojilist;"
139
+ sql = 'select count(*) from myojilist;'
139
140
  id = Random.rand(((db.execute(sql))[0][0]).to_i)
140
141
  sql = "select * from myojilist where id = #{id};"
141
142
  data = db.execute(sql)
142
- return {kanji: data[0][1], kana: data[0][2]}
143
143
  db.close
144
+ { kanji: data[0][1], kana: data[0][2] }
144
145
  end
145
146
 
146
147
  # Hash型の名前データを取得する
147
148
  # genderは男性はMで女性はFになります。
148
149
  # @return [Hash] {:kanji => 漢字名, :kana => 読み仮名, :gender => 性別}
149
- def self.getNamae()
150
+ def self.namae
150
151
  db = SQLite3::Database.new(@dbfile)
151
- sql = "select count(*) from namaelist;"
152
+ sql = 'select count(*) from namaelist;'
152
153
  id = Random.rand(((db.execute(sql))[0][0]).to_i)
153
154
  sql = "select * from namaelist where id = #{id};"
154
155
  data = db.execute(sql)
155
- gender = "M"
156
- if data[0][3] == 2
157
- gender = "F"
156
+ gender = 'M'
157
+ if data[0][3] == 2
158
+ gender = 'F'
158
159
  end
159
- return {kanji: data[0][1], kana: data[0][2], gender: gender }
160
160
  db.close
161
+ { kanji: data[0][1], kana: data[0][2], gender: gender }
161
162
  end
162
-
163
163
  end
data/randwordjp.gemspec CHANGED
@@ -4,22 +4,22 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'randwordjp/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "randwordjp"
7
+ spec.name = 'randwordjp'
8
8
  spec.version = Randwordjp::VERSION
9
- spec.authors = ["inpwjp"]
10
- spec.email = ["inpw@mua.biglobe.ne.jp"]
11
- spec.description = %q{get Japanese random words.}
12
- spec.summary = %q{get Japanese random words.}
13
- spec.homepage = ""
14
- spec.license = "MIT"
9
+ spec.authors = ['inpwjp']
10
+ spec.email = ['inpw@mua.biglobe.ne.jp']
11
+ spec.description = 'get Japanese random words.'
12
+ spec.summary = 'get Japanese random words.'
13
+ spec.homepage = ''
14
+ spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
19
+ spec.require_paths = ['lib']
20
20
 
21
- spec.add_development_dependency "bundler"
22
- spec.add_development_dependency "rake"
23
- spec.add_development_dependency "rspec"
24
- spec.add_development_dependency "sqlite3"
21
+ spec.add_development_dependency 'bundler'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'rspec'
24
+ spec.add_development_dependency 'sqlite3'
25
25
  end
@@ -5,109 +5,107 @@ describe Randwordjp do
5
5
  expect(Randwordjp::VERSION).not_to be nil
6
6
  end
7
7
 
8
- it 'getNumeric length is should have set length' do
9
- expect(Randwordjp.getNumeric(15).length).to be 15
8
+ it 'numeric length is should have set length' do
9
+ expect(Randwordjp.numeric(15).length).to be 15
10
10
  end
11
11
 
12
- it 'getNumeric is should have numerical' do
13
- expect(Randwordjp.getNumeric(10)).to match /[0-9]{10}/
12
+ it 'numeric is should have numerical' do
13
+ expect(Randwordjp.numeric(10)).to match(/[0-9]{10}/)
14
14
  end
15
15
 
16
- it 'getNumeric is not should have next time' do
17
- expect(Randwordjp.getNumeric(10)).not_to eq(Randwordjp.getNumeric(10))
16
+ it 'numeric is not should have next time' do
17
+ expect(Randwordjp.numeric(10)).not_to eq(Randwordjp.numeric(10))
18
18
  end
19
19
 
20
- describe "getZenkakuKatakana" do
21
- it 'getZenkakuKataKana length is should have set length' do
22
- expect(Randwordjp.getZenkakuKataKana(15).length).to be 15
20
+ describe 'zenkaku_katakana' do
21
+ it 'zenkaku_katakana length is should have set length' do
22
+ expect(Randwordjp.zenkaku_katakana(15).length).to be 15
23
23
  end
24
24
 
25
- it 'getZenkakuKataKana is should have 全角カタカナ' do
26
- expect(Randwordjp.getZenkakuKataKana(10)).to match /[ア-ン]{10}/
25
+ it 'zenkaku_katakana is should have 全角カタカナ' do
26
+ expect(Randwordjp.zenkaku_katakana(10)).to match(/[ア-ン]{10}/)
27
27
  end
28
28
 
29
- it 'getZenkakuKataKana is should have ヱヰ , when the old opt is true ' do
30
- expect(Randwordjp.getZenkakuKataKana(5000, old: true)).to match /[ヱヰ]/
29
+ it 'zenkaku_katakana is should have ヱヰ , when the old opt is true ' do
30
+ expect(Randwordjp.zenkaku_katakana(5000, old: true)).to match(/[ヱヰ]/)
31
31
  end
32
32
 
33
- it 'getZenkakuKataKana is not have ヱヰ , when the old opt is false ' do
34
- expect(Randwordjp.getZenkakuKataKana(5000, old: false)).not_to match /[ヱヰ]/
33
+ it 'zenkaku_katakana is not have ヱヰ , when the old opt is false ' do
34
+ expect(Randwordjp.zenkaku_katakana(5000, old: false)).not_to match(/[ヱヰ]/)
35
35
  end
36
36
 
37
- it 'getZenkakuKataKana is not should have next time' do
38
- expect(Randwordjp.getZenkakuKataKana(10)).not_to eq(Randwordjp.getZenkakuKataKana(10))
37
+ it 'zenkaku_katakana is not should have next time' do
38
+ expect(Randwordjp.zenkaku_katakana(10)).not_to eq(Randwordjp.zenkaku_katakana(10))
39
39
  end
40
40
  end
41
41
 
42
- describe "getZenkakuHiraKana" do
43
- it 'getZenkakuHiraKana length is should have set length' do
44
- expect(Randwordjp.getZenkakuHiraKana(15).length).to be 15
42
+ describe 'zenkaku_hirakana' do
43
+ it 'zenkaku_hirakana length is should have set length' do
44
+ expect(Randwordjp.zenkaku_hirakana(15).length).to be 15
45
45
  end
46
46
 
47
- it 'getZenkakuHiraKana is should have 全角ひらかな' do
48
- expect(Randwordjp.getZenkakuHiraKana(10)).to match /[あ-ん]{10}/
47
+ it 'zenkaku_hirakana is should have 全角ひらかな' do
48
+ expect(Randwordjp.zenkaku_hirakana(10)).to match(/[あ-ん]{10}/)
49
49
  end
50
50
 
51
- it 'getZenkakuHiraKana is should have ゑゐ , when the old opt is true ' do
52
- expect(Randwordjp.getZenkakuHiraKana(5000, old: true)).to match /[ゑゐ]/
51
+ it 'zenkaku_hirakana is should have ゑゐ , when the old opt is true ' do
52
+ expect(Randwordjp.zenkaku_hirakana(5000, old: true)).to match(/[ゑゐ]/)
53
53
  end
54
54
 
55
- it 'getZenkakuKataKana is not have ゑゐ , when the old opt is false ' do
56
- expect(Randwordjp.getZenkakuHiraKana(5000, old: false)).not_to match /[ゑゐ]/
55
+ it 'zenkaku_hirakana is not have ゑゐ , when the old opt is false ' do
56
+ expect(Randwordjp.zenkaku_hirakana(5000, old: false)).not_to match(/[ゑゐ]/)
57
57
  end
58
58
 
59
- it 'getZenkakuHiraKana is not should have next time' do
60
- expect(Randwordjp.getZenkakuHiraKana(10)).not_to eq(Randwordjp.getZenkakuHiraKana(10))
59
+ it 'zenkaku_hirakana is not should have next time' do
60
+ expect(Randwordjp.zenkaku_hirakana(10)).not_to eq(Randwordjp.zenkaku_hirakana(10))
61
61
  end
62
62
  end
63
63
 
64
- it 'getZenkakuAll is not should have next time' do
65
- expect(Randwordjp.getZenkakuAll(10)).not_to eq(Randwordjp.getZenkakuAll(10))
64
+ it 'zenkaku_all is not should have next time' do
65
+ expect(Randwordjp.zenkaku_all(10)).not_to eq(Randwordjp.zenkaku_all(10))
66
66
  end
67
67
 
68
- it 'getTodofuken is not should have next time' do
69
- expect(Randwordjp::getTodofuken()).not_to eq(Randwordjp::getTodofuken())
68
+ it 'todofuken is not should have next time' do
69
+ expect(Randwordjp.todofuken).not_to eq(Randwordjp.todofuken)
70
70
  end
71
71
 
72
- describe "getNamae" do
73
- it 'getNamae is not null' do
74
- expect(Randwordjp::getNamae()).not_to eq nil
72
+ describe 'namae' do
73
+ it 'namae is not null' do
74
+ expect(Randwordjp.namae).not_to eq nil
75
75
  end
76
76
 
77
- it 'getNamae have :kana at return hash' do
78
- expect(Randwordjp::getNamae()[:kana]).not_to eq nil
77
+ it 'namae have :kana at return hash' do
78
+ expect(Randwordjp.namae[:kana]).not_to eq nil
79
79
  end
80
80
 
81
- it 'getNamae have :kanji at return hash' do
82
- expect(Randwordjp::getNamae()[:kanji]).not_to eq nil
81
+ it 'namae have :kanji at return hash' do
82
+ expect(Randwordjp.namae[:kanji]).not_to eq nil
83
83
  end
84
84
 
85
- it 'getNamae have :gender at return hash' do
86
- expect(Randwordjp::getNamae()[:gender]).not_to eq nil
85
+ it 'namae have :gender at return hash' do
86
+ expect(Randwordjp.namae[:gender]).not_to eq nil
87
87
  end
88
88
 
89
- it 'getNamae is not should have next time' do
90
- expect(Randwordjp::getNamae().to_s).not_to eq(Randwordjp::getNamae().to_s)
89
+ it 'namae is not should have next time' do
90
+ expect(Randwordjp.namae.to_s).not_to eq(Randwordjp.namae.to_s)
91
91
  end
92
-
93
92
  end
94
93
 
95
- describe "getMyoji" do
96
- it 'getMyoji is not null' do
97
- expect(Randwordjp::getMyoji()).not_to eq nil
94
+ describe 'myoji' do
95
+ it 'myoji is not null' do
96
+ expect(Randwordjp.myoji).not_to eq nil
98
97
  end
99
98
 
100
- it 'getMyoji have :kana at return hash' do
101
- expect(Randwordjp::getMyoji()[:kana]).not_to eq nil
99
+ it 'myoji have :kana at return hash' do
100
+ expect(Randwordjp.myoji[:kana]).not_to eq nil
102
101
  end
103
102
 
104
- it 'getMyoji have :kanji at return hash' do
105
- expect(Randwordjp::getMyoji()[:kanji]).not_to eq nil
103
+ it 'myoji have :kanji at return hash' do
104
+ expect(Randwordjp.myoji[:kanji]).not_to eq nil
106
105
  end
107
106
 
108
- it 'getMyoji is not should have next time' do
109
- expect(Randwordjp::getMyoji().to_s).not_to eq(Randwordjp::getMyoji().to_s)
107
+ it 'myoji is not should have next time' do
108
+ expect(Randwordjp.myoji.to_s).not_to eq(Randwordjp.myoji.to_s)
110
109
  end
111
110
  end
112
111
  end
113
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: randwordjp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - inpwjp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-16 00:00:00.000000000 Z
11
+ date: 2015-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -75,6 +75,7 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
77
  - ".rspec"
78
+ - ".ruby-version"
78
79
  - ".travis.yml"
79
80
  - Gemfile
80
81
  - Guardfile