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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2214af5c58a42bb813be72ea9a34c02da9973dbb
4
- data.tar.gz: cad44c16e6f338ac192b14ac75cec43016e62855
3
+ metadata.gz: 1f1cc0d7b578f38afb2c902dd3bd64cc602995de
4
+ data.tar.gz: 02d7396da4ad57a4157f9ec1a733a6c22090697b
5
5
  SHA512:
6
- metadata.gz: 8a9d25c01f007619c7a6524b066ba727ac16335f04ae9543f269e53f323612d8a4b2517a0075b262fa31d587599fd9c05e25f379b84ea1b0369001f6ee2b1a84
7
- data.tar.gz: 044eb98a584fad6cb3a85f5347209c5a9608704243c59869ddc92832b86821bbbbe7972619d3d9e3806041f8ab93496b56ad26707a08cb4e95f2650bc3ce7a9e
6
+ metadata.gz: d6fd3ae2f232bc7d98035a0f8e7fb38da0a173953440a001017f1eb7f47332f7180bd5e14c22101bb8e6e0acf0a9f56fb8a41bad933ff7a3a93c6ff04941364d
7
+ data.tar.gz: 6aa7f6737ea0c18e1e91dc5892337dd22fa61f1d25cec474dcef998a4825528ce72b44e00fe624020a80ebd90d9ea4a58faf4b1ffe9918ef2ed7b51f2cd0b9e9
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ *.DS_Store
1
2
  *.gem
2
3
  *.rbc
3
4
  .bundle
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour --format d
@@ -1,3 +1,3 @@
1
1
  class HyakuninIssyu
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
@@ -1,7 +1,7 @@
1
- require "HyakuninIssyu"
1
+ require "spec_helper.rb"
2
2
 
3
3
  describe HyakuninIssyu do
4
- describe 'show the particular poem when the id is specified' do
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 'create the instance without poem_id' do
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
@@ -1,4 +1,6 @@
1
1
  require "rubygems"
2
+ require "bundler/setup"
3
+ require "HyakuninIssyu"
2
4
 
3
5
  RSpec.configure do |config|
4
6
  config.mock_framework = :rspec
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.2
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