string_plus 0.5.2 → 0.5.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: 33d40d790b1ff9aea27718c7fdc4cb3c0fa7a71a
4
- data.tar.gz: 3e0959e1393dd73ccdeae353acc6ed3f359fb4bf
3
+ metadata.gz: 6b08de2b86286d2a49044572329cfd673f7a7c9f
4
+ data.tar.gz: 47a48d63da4fc0db26bdb235aecee1fbec84935b
5
5
  SHA512:
6
- metadata.gz: 01afba878f61b8d169e6ead7c644a40b8301ca9c50287156d7ab0d1a1b71116c773bbb29cb71ca1307ad71a980f3cf13ecc550b5f5d8841a404f64341f40a82d
7
- data.tar.gz: c781f36c8c5b6509ddb54202beb9a0eb6e8ad83e48335b444c6f1bfa74993b02a9681665f1dc984f72f5875b575675c27413a1ed295b39d976bc8c9092779fae
6
+ metadata.gz: b0bb9fb481899e423de415683bf37395e41030a0dfa67e5b1035936a48f49ee346312ea6ce9350af6d364dfe1c81e8dbbed87288a5879a05adaa34c1d7fdc259
7
+ data.tar.gz: 2499122f0835950d69f163516ca9506cc5aac0ba521c5cc864b0bdca1fbc5484d17ae8b11675ffc9c6ffee23f32978eaa80c3f65850ef6cf4ab7f9954c7c3cc3
@@ -18,7 +18,7 @@ module StringPlus
18
18
  end
19
19
 
20
20
  def lcamelcase(str=self)
21
- camelcase(false)
21
+ camelcase(str, false)
22
22
  end
23
23
 
24
24
  def underscore(str=self)
@@ -33,7 +33,7 @@ module StringPlus
33
33
  alias :snakecase :underscore
34
34
 
35
35
  def constantize(str=self)
36
- c = str.split("-").map(&:camelcase).join("::")
36
+ c = str.split("-").map {|segment| camelcase(segment)}.join("::")
37
37
  Object.send(:const_get, c)
38
38
  end
39
39
  end
@@ -1,3 +1,3 @@
1
1
  module StringPlus
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: string_plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Federico Iachetti