tzispa_utils 0.3.4 → 0.3.5
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/tzispa/utils.rb +8 -5
- data/lib/tzispa/utils/indenter.rb +1 -1
- data/lib/tzispa/utils/{hash.rb → tz_hash.rb} +0 -0
- data/lib/tzispa/utils/{integer.rb → tz_integer.rb} +0 -0
- data/lib/tzispa/utils/{string.rb → tz_string.rb} +0 -0
- data/lib/tzispa/utils/version.rb +1 -1
- data/lib/tzispa_utils.rb +3 -0
- data/test/hash_test.rb +0 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31d614392f03ecdc4ee5a1f0e0935264aa7cc287
|
|
4
|
+
data.tar.gz: 1e1d19d242249a5ac60f4b35ba33d1fea7502215
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a044bae8aebb8fc7bf1b704a173af64d905c49456298350e94cb1cc6a917c11fb1069818fb367de56e9ea120bc4866549ef7db18b77ac71a11af639fe94a2420
|
|
7
|
+
data.tar.gz: '01075790cc0e996f8e0e922d0b912282bcdfd51b22c1618b982f901514e0224111be826aef10c321b68633664215e04912e629393af794fbde047cc10cab33e3'
|
data/CHANGELOG.md
CHANGED
data/lib/tzispa/utils.rb
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module Tzispa
|
|
2
4
|
module Utils
|
|
3
5
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
autoload :TzString, 'tzispa/utils/tz_string'
|
|
7
|
+
autoload :TzInteger, 'tzispa/utils/tz_integer'
|
|
8
|
+
autoload :TzHash, 'tzispa/utils/tz_hash'
|
|
9
|
+
autoload :Decorator, 'tzispa/utils/decorator'
|
|
10
|
+
autoload :Indenter, 'tzispa/utils/indenter'
|
|
11
|
+
autoload :Mail, 'tzispa/utils/mail'
|
|
9
12
|
|
|
10
13
|
end
|
|
11
14
|
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/tzispa/utils/version.rb
CHANGED
data/lib/tzispa_utils.rb
CHANGED
data/test/hash_test.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tzispa_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Antonio Piñero
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|
|
@@ -94,11 +94,11 @@ files:
|
|
|
94
94
|
- lib/tzispa/utils.rb
|
|
95
95
|
- lib/tzispa/utils/decorator.rb
|
|
96
96
|
- lib/tzispa/utils/duplicable.rb
|
|
97
|
-
- lib/tzispa/utils/hash.rb
|
|
98
97
|
- lib/tzispa/utils/indenter.rb
|
|
99
|
-
- lib/tzispa/utils/integer.rb
|
|
100
98
|
- lib/tzispa/utils/mail.rb
|
|
101
|
-
- lib/tzispa/utils/
|
|
99
|
+
- lib/tzispa/utils/tz_hash.rb
|
|
100
|
+
- lib/tzispa/utils/tz_integer.rb
|
|
101
|
+
- lib/tzispa/utils/tz_string.rb
|
|
102
102
|
- lib/tzispa/utils/version.rb
|
|
103
103
|
- lib/tzispa_utils.rb
|
|
104
104
|
- test/decorator_test.rb
|
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
129
|
version: '0'
|
|
130
130
|
requirements: []
|
|
131
131
|
rubyforge_project:
|
|
132
|
-
rubygems_version: 2.6.
|
|
132
|
+
rubygems_version: 2.6.13
|
|
133
133
|
signing_key:
|
|
134
134
|
specification_version: 4
|
|
135
135
|
summary: Utilities for Tzispa
|