lotus-utils 0.5.0 → 0.5.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: 93d211db34674dbdfa9728cf23e72e6d3236f754
4
- data.tar.gz: c88e28e49ec323d6e74a01c6f0371d29e97e0680
3
+ metadata.gz: 2600dc963210544a03cf272dae3f8a0d09060e11
4
+ data.tar.gz: d6e942d537d27f6df9a4c0d25e088881445063eb
5
5
  SHA512:
6
- metadata.gz: 2335cb45570fc4f67b6f5b1db5f8a938d9b94e1e3d49338d68f717f39fc046fb2dc573fd6070ccd5e7aaf47f5b01092b167d2f108ef3d9308e46a029d865a5b8
7
- data.tar.gz: 4d2c770981d67118df3723dd306a20e3644ae454c114894c6dd4bd3f78974bc04bd575af1c8089e2b53d724d6d99147a72fe175be824302c6c6c1e5ff1f91996
6
+ metadata.gz: cf2cf0ed6a076309a9133b4a208f3c4bd82e9b167530462b29fa5ee996595525a292535a790f2375631695823270ead6d9c3f6cb302f50a85968e1c8863322e0
7
+ data.tar.gz: 971e3448df916e80834c71b2937db27040d653e6f2451e68f1023a8e547724d22a866cc8020ae0db75dda6b1729605975013a7247cc0010c0d8b129b2bca8141
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Lotus::Utils
2
2
  Ruby core extentions and class utilities for Lotus
3
3
 
4
+ ## v0.5.1 - 2015-07-10
5
+ ### Fixed
6
+ - [Thiago Felippe] Ensure `Lotus::Utils::PathPrefix#join` won't remote duplicate entries (eg `/admin/dashboard/admin`)
7
+
4
8
  ## v0.5.0 - 2015-06-23
5
9
  ### Added
6
10
  - [Luca Guidi] Extracted `Lotus::Logger` from `lotusrb`
@@ -82,7 +82,7 @@ module Lotus
82
82
  prefix = @string.gsub(@separator, separator)
83
83
 
84
84
  self.class.new(
85
- Utils::Kernel.Array([prefix, strings]).join(separator),
85
+ [prefix, strings].flatten.compact.join(separator),
86
86
  separator
87
87
  ).relative!
88
88
  end
@@ -3,6 +3,6 @@ module Lotus
3
3
  # Defines the version
4
4
  #
5
5
  # @since 0.1.0
6
- VERSION = '0.5.0'.freeze
6
+ VERSION = '0.5.1'.freeze
7
7
  end
8
8
  end
data/lotus-utils.gemspec CHANGED
@@ -6,8 +6,8 @@ require 'lotus/utils/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'lotus-utils'
8
8
  spec.version = Lotus::Utils::VERSION
9
- spec.authors = ['Luca Guidi', 'Trung Lê']
10
- spec.email = ['me@lucaguidi.com', 'trung.le@ruby-journal.com']
9
+ spec.authors = ['Luca Guidi', 'Trung Lê', 'Alfonso Uceda Pompa']
10
+ spec.email = ['me@lucaguidi.com', 'trung.le@ruby-journal.com', 'uceda73@gmail.com']
11
11
  spec.description = %q{Lotus utilities}
12
12
  spec.summary = %q{Ruby core extentions and Louts utilities}
13
13
  spec.homepage = 'http://lotusrb.org'
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lotus-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
8
8
  - Trung Lê
9
+ - Alfonso Uceda Pompa
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2015-06-23 00:00:00.000000000 Z
13
+ date: 2015-07-10 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: bundler
@@ -57,6 +58,7 @@ description: Lotus utilities
57
58
  email:
58
59
  - me@lucaguidi.com
59
60
  - trung.le@ruby-journal.com
61
+ - uceda73@gmail.com
60
62
  executables: []
61
63
  extensions: []
62
64
  extra_rdoc_files: []