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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cae83b03670a46e683579694a0349d32d6d30f32
4
- data.tar.gz: a890fed053d9a5500ff42d294c80e10381168205
3
+ metadata.gz: 31d614392f03ecdc4ee5a1f0e0935264aa7cc287
4
+ data.tar.gz: 1e1d19d242249a5ac60f4b35ba33d1fea7502215
5
5
  SHA512:
6
- metadata.gz: bbe54049247c675e359be1a7299c06bc37644aef2439dcd269738ac218d8d4d54459778095bcb64e84b11eafd146b018d84c0bc216c819cd81123ffb8db84621
7
- data.tar.gz: 0f1781a885ce2e16c036e226cee81af03443d3a970abbf5e8477308c1fa5b3680f6c2186efc6b81ca937b5dd1e7001a824de7dcb24e5d52dac4a2993a478940b
6
+ metadata.gz: a044bae8aebb8fc7bf1b704a173af64d905c49456298350e94cb1cc6a917c11fb1069818fb367de56e9ea120bc4866549ef7db18b77ac71a11af639fe94a2420
7
+ data.tar.gz: '01075790cc0e996f8e0e922d0b912282bcdfd51b22c1618b982f901514e0224111be826aef10c321b68633664215e04912e629393af794fbde047cc10cab33e3'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  Tzispa Utils
2
2
 
3
+ ## v0.3.5
4
+ - constants autoloading
5
+ - tests fixes
6
+
3
7
  ## v0.3.4
4
8
  - added string refienment methods: integer? blank?
5
9
 
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
- require 'tzispa/utils/version'
5
- require 'tzispa/utils/decorator'
6
- require 'tzispa/utils/indenter'
7
- require 'tzispa/utils/string'
8
- require 'tzispa/utils/integer'
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'tzispa/utils/string'
3
+ require 'tzispa/utils/tz_string'
4
4
 
5
5
  module Tzispa
6
6
  module Utils
File without changes
File without changes
File without changes
@@ -3,7 +3,7 @@
3
3
  module Tzispa
4
4
  module Utils
5
5
 
6
- VERSION = '0.3.4'
6
+ VERSION = '0.3.5'
7
7
  NAME = 'Tzispa Utils'
8
8
  GEM_NAME = 'tzispa_utils'
9
9
 
data/lib/tzispa_utils.rb CHANGED
@@ -1,6 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Tzispa
2
4
  module Utils
3
5
 
6
+ require 'tzispa/utils/version'
4
7
  require 'tzispa/utils'
5
8
 
6
9
  end
data/test/hash_test.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'test_helper'
4
- require 'tzispa/utils/hash'
5
4
 
6
5
  class HashTest < Minitest::Test
7
6
  using Tzispa::Utils::TzHash
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
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-04-25 00:00:00.000000000 Z
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/string.rb
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.11
132
+ rubygems_version: 2.6.13
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: Utilities for Tzispa