HyakuninIssyu 0.4.2 → 0.4.3
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 +4 -4
- data/.gitignore +1 -0
- data/.rspec +1 -0
- data/lib/HyakuninIssyu/version.rb +1 -1
- data/spec/hyakuninissyu_spec.rb +3 -3
- data/spec/spec_helper.rb +2 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f1cc0d7b578f38afb2c902dd3bd64cc602995de
|
4
|
+
data.tar.gz: 02d7396da4ad57a4157f9ec1a733a6c22090697b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6fd3ae2f232bc7d98035a0f8e7fb38da0a173953440a001017f1eb7f47332f7180bd5e14c22101bb8e6e0acf0a9f56fb8a41bad933ff7a3a93c6ff04941364d
|
7
|
+
data.tar.gz: 6aa7f6737ea0c18e1e91dc5892337dd22fa61f1d25cec474dcef998a4825528ce72b44e00fe624020a80ebd90d9ea4a58faf4b1ffe9918ef2ed7b51f2cd0b9e9
|
data/.gitignore
CHANGED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour --format d
|
data/spec/hyakuninissyu_spec.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
require "
|
1
|
+
require "spec_helper.rb"
|
2
2
|
|
3
3
|
describe HyakuninIssyu do
|
4
|
-
describe '
|
4
|
+
describe 'poem with particular poem id' do
|
5
5
|
before do
|
6
6
|
@id = rand(100)+1
|
7
7
|
@test_poem = HyakuninIssyu.new(@id)
|
@@ -44,7 +44,7 @@ describe HyakuninIssyu do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe '
|
47
|
+
describe 'poem without any particular ids' do
|
48
48
|
before do
|
49
49
|
@test_poem = HyakuninIssyu.new
|
50
50
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: HyakuninIssyu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tomomichi
|
@@ -61,6 +61,7 @@ extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
63
|
- .gitignore
|
64
|
+
- .rspec
|
64
65
|
- Gemfile
|
65
66
|
- HyakuninIssyu.gemspec
|
66
67
|
- LICENSE.txt
|