lotus-utils 0.6.0 → 0.6.1

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: c9cbb89b047bc9d6da31d644120a6314aae15e13
4
- data.tar.gz: ec85522be16a248f320b93fe5ef0911f7de63853
3
+ metadata.gz: 901093cc318183a04da17e0a9bb1a809bdefc4b3
4
+ data.tar.gz: 52786481f85224f498c51127b19600c5661b8b84
5
5
  SHA512:
6
- metadata.gz: 529c56324efb450ead039cf3f1747e101d729a9dd8cef9876273acde10cdce5298a1f8a7c14d7136667e1fc9b2d713ec3a878fa6a96ae57a70c67d5c317f76b2
7
- data.tar.gz: cc3c30a6aa45031df28cfc0c5b533ce8e3c9fc5d0b81e9893ac71ee845f15118901cc20b8c6b8baf0c24d33732dd8570ff4fa8aa3afc0bc776ca9673a3c40cd2
6
+ metadata.gz: 1a243c400856044c5d67508dedd52fd184a1aa8b6879cdef814950ad132a054cf575f5d33ae16275ae27e3f2bccb056d503ec14fca94b79ccf7ebd3b1aa5474e
7
+ data.tar.gz: 8595e160416f9801d5a9652d33e26383bd555bd97e1279c6094b00d46dd291318ae90c110a31e12ff458a52b44ce27b0e3ba43db639b468d9d02904267f63fba
@@ -1,6 +1,10 @@
1
1
  # Lotus::Utils
2
2
  Ruby core extentions and class utilities for Lotus
3
3
 
4
+ ## v0.6.1 - 2016-01-19
5
+ ### Fixed
6
+ - [Anton Davydov] Ensure `Lotus::Utils::String#classify` to work properly with dashes (eg. `"app-store" => "App::Store"`)
7
+
4
8
  ## v0.6.0 - 2016-01-12
5
9
  ### Added
6
10
  - [Luca Guidi] Official support for Ruby 2.3
@@ -70,7 +70,7 @@ module Lotus
70
70
  #
71
71
  # @since 0.3.4
72
72
  # @api private
73
- CLASSIFY_WORD_SEPARATOR = /#{CLASSIFY_SEPARATOR}|#{NAMESPACE_SEPARATOR}|#{UNDERSCORE_SEPARATOR}/
73
+ CLASSIFY_WORD_SEPARATOR = /#{CLASSIFY_SEPARATOR}|#{NAMESPACE_SEPARATOR}|#{UNDERSCORE_SEPARATOR}|#{DASHERIZE_SEPARATOR}/
74
74
 
75
75
  # Initialize the string
76
76
  #
@@ -3,6 +3,6 @@ module Lotus
3
3
  # Defines the version
4
4
  #
5
5
  # @since 0.1.0
6
- VERSION = '0.6.0'.freeze
6
+ VERSION = '0.6.1'.freeze
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lotus-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-01-12 00:00:00.000000000 Z
13
+ date: 2016-01-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler