dimples 3.0.3 → 3.0.4

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: 10fdb1d2c75adec3a427cc44bd449934c3c64aa1
4
- data.tar.gz: 2bf0e8e89d7242c886493a0e4a9d07667ddacde8
3
+ metadata.gz: 250405af2e270c7f48443222c7503a2ea14fdb05
4
+ data.tar.gz: 45648589f28e96b6299beaea14132c9d29a5e5bf
5
5
  SHA512:
6
- metadata.gz: 55505c3457fef714819f5b3715683a51f5f0f6785a62c7f7dec7d47697d31eff7b0b5968aa985f68dc3c998e3c99c9332ef0d2f25222565cdfa6fe496fa90158
7
- data.tar.gz: 981cb8c392b46ae2ad2e0d80acd48493b121e66b60d4201ca8a423376aab28450af207908b3869674b21a6916a72798259614e0750b5d3e82a14b20d9084bef1
6
+ metadata.gz: f7b0876e40572826cb5fb8e6b0195d570250c2c52710d5a0a14e88a32b65794cbe13f00bfb7b1c77d59de152080ba1a237f176962a923e301478cef0dad9e5ef
7
+ data.tar.gz: e7873ddab0ae82decade47aefd4bdcfe87afe238790044aa6f57d3bedc0690df6eb2be7d1d5a75348fb2f226448cbccb2569a67f6b7684f8fbf41c800720af1d
@@ -15,7 +15,7 @@ module Dimples
15
15
  end
16
16
 
17
17
  def inspect
18
- "#<Dimples::Category @slug=#{@slug} @name=#{@name}>"
18
+ "#<#{self.class.to_s} @slug=#{@slug} @name=#{@name}>"
19
19
  end
20
20
  end
21
21
  end
data/lib/dimples/page.rb CHANGED
@@ -50,7 +50,7 @@ module Dimples
50
50
  end
51
51
 
52
52
  def inspect
53
- "#<Dimples::Page @output_path=#{output_path}>"
53
+ "#<#{self.class.to_s} @output_path=#{output_path}>"
54
54
  end
55
55
  end
56
56
  end
data/lib/dimples/post.rb CHANGED
@@ -41,7 +41,7 @@ module Dimples
41
41
  end
42
42
 
43
43
  def inspect
44
- "#<Dimples::Post @slug=#{@slug} @output_path=#{output_path}>"
44
+ "#<#{self.class.to_s} @slug=#{@slug} @output_path=#{output_path}>"
45
45
  end
46
46
  end
47
47
  end
data/lib/dimples/site.rb CHANGED
@@ -257,7 +257,7 @@ module Dimples
257
257
  end
258
258
 
259
259
  def inspect
260
- "#<Dimples::Site " \
260
+ "#<#{self.class.to_s} " \
261
261
  "@source_paths=#{@source_paths} " \
262
262
  "@output_paths=#{@output_paths}>"
263
263
  end
@@ -21,7 +21,7 @@ module Dimples
21
21
  end
22
22
 
23
23
  def inspect
24
- "#<Dimples::Template @slug=#{@slug} @path=#{@path}>"
24
+ "#<#{self.class.to_s} @slug=#{@slug} @path=#{@path}>"
25
25
  end
26
26
  end
27
27
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dimples
4
- VERSION = '3.0.3'
4
+ VERSION = '3.0.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dimples
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 3.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Bogan