template_class 1.3.0 → 1.3.1

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
  SHA256:
3
- metadata.gz: 668ba7c1bca879891ab4e3d88974a1b426004cf6aebd80d85ea814ba0eb00f3d
4
- data.tar.gz: 90b2d1afb78fee8ef58227097e5b5a7b49505cccef447e6e458da94e12ef74e6
3
+ metadata.gz: 04740d36a74ebb180403184fef5051bd82e84fb3d1a541b6dce8975085978488
4
+ data.tar.gz: 1f6ddba16c05a876d6f7b5f9a49ffc30c99f7b1058b6d3a2642011ddad0f5fd4
5
5
  SHA512:
6
- metadata.gz: 6b288596d3e5612c4fe8e02e0ba6e23201b370839d6f6d6d42bd21a86c2a284f02e42e13208d350eae1faa74f8ef4fb3bbe02f6d8b36d4a4734a479432a6df1d
7
- data.tar.gz: 13a7d6ceb090b5c4303061aaaea61fa04520fddb52c980e08e6ba8090ccd8379c7ebd40ddd8a60d458167bda7930adcdf4ab6a58d044e5ca46987afee958be7d
6
+ metadata.gz: 8db3d00ddbbb8e36a86620a9dd52a02668b4add6e123261dd07378aed837afb8ad7548f22c2ffee8c89cbec514de86d0dcdaf4bfbc4fe1058fb3e578e76229cd
7
+ data.tar.gz: 5fdc220273cc821b670c32531e45a97a5c35623721f63f93053fd6dcce0469ae47683fd192481add55edde420e1d6ea6d40e5f513ff605cfe58a81d75129de52
data/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@
8
8
  ### Bug fixes
9
9
  )-->
10
10
 
11
+ ## 1.3.1 2025-02-21
12
+
13
+ ### Bug fixes
14
+
15
+ - Make the overrides of `to_s` and `inspect` of specializations return the name of the class in case it has one. Before, they would return the C++ style name even if the class/module had its own name.
16
+
11
17
  ## 1.3.0 2025-02-17
12
18
 
13
19
  ### New features
@@ -32,7 +32,11 @@ module TemplateClass
32
32
  outer_self = self
33
33
 
34
34
  klass.define_singleton_method :to_s do
35
- "#{outer_self.owner}<#{outer_self.key}>"
35
+ if respond_to?(:anonymous?) ? anonymous? : name.nil?
36
+ "#{outer_self.owner}<#{outer_self.key}>"
37
+ else
38
+ super()
39
+ end
36
40
  end
37
41
 
38
42
  klass.singleton_class.alias_method :inspect, :to_s
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TemplateClass
4
- VERSION = '1.3.0'
4
+ VERSION = '1.3.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: template_class
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moku S.r.l.
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-02-17 00:00:00.000000000 Z
12
+ date: 2025-02-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport