tdiary-style-gfm 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 603f4b3fddd0353f0bd910d7847b087fc00a3fc1
4
- data.tar.gz: f35255ee434c2e14b16aba90f33159f7b36fb51f
3
+ metadata.gz: 81359b23dd148e13e8e53c63a7d948768537e7bc
4
+ data.tar.gz: 64473dae3fae447d020a0b717f8462ea25f105f0
5
5
  SHA512:
6
- metadata.gz: b31b3bf084f6c550f5dfb3c0c9aca5e5074c09845454d32f6bb81866a154f68b88c3ec2e192386d116acb3ce818a14b1c52dcdd8b132b1b8400d580eef9ef01d
7
- data.tar.gz: 1c201cba7b716b2f5a994dffb94a953ead9c0e343ce673f6f58c0e5e05496c46cacaa8b52b8deaa592aef3ebe7bb6a780513e3dc4e64a250399db7f93d5ed26c
6
+ metadata.gz: 6e69fb429c4070fc7d4cc9f4ad772ad83ffac1822632a9eb9129622f3ccc34fd5b90978dea36c4f577def47e3b717e00c443b67a4040b38dfbe5adf54c9fd516
7
+ data.tar.gz: b89a3a41ecf6d8e2f9c295399bc70398e6bc85f584f53da886b94f12d943b7069ae6cd353c1203d2507cb76f965fde607a4ab3116b08511857ab70301a4c50e2
@@ -1,7 +1,7 @@
1
1
  module Tdiary
2
2
  module Style
3
3
  module Gfm
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
6
6
  end
7
7
  end
@@ -132,8 +132,6 @@ module TDiary
132
132
  end
133
133
 
134
134
  class GfmDiary
135
- include CategorizableDiary
136
-
137
135
  def initialize(date, title, body, modified = Time.now)
138
136
  init_diary
139
137
  replace( date, title, body )
data/spec/spec_helper.rb CHANGED
@@ -6,4 +6,5 @@ require 'tdiary/style'
6
6
  require 'tdiary/style/gfm'
7
7
 
8
8
  TDiary::Style::GfmDiary.send(:include, TDiary::Style::BaseDiary)
9
+ TDiary::Style::GfmDiary.send(:include, TDiary::Style::CategorizableDiary)
9
10
  TDiary::Style::GfmSection.send(:include, TDiary::Style::BaseSection)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdiary-style-gfm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - SHIBATA Hiroshi