smart_core 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/smart_core/initializer.rb +2 -0
- data/lib/smart_core/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '098bc7f0d0796b2f21e223aca8eb463de3a6d2c1aeb0327380605c85a01ef5e2'
|
|
4
|
+
data.tar.gz: a25e84c53d4c5d26a33b7d8502a844da144c47b156743436b148e2f362b3f9cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aea0166851829b3001e93bde225120fb4dcd5a3a2dda34d76e01a12b6eb98b124b28e3eddeacf4d8cd4a285095a832e78f03fa45273d4046e993e999a743468e
|
|
7
|
+
data.tar.gz: e2d70a67158a59b54c5f62467b53a39a35e451ecbaefa5e952c9152cb7b92319e9b487f1362d66a3c8c168cddb1c5638f136717ef736a2ebd18587d91c2a537b
|
data/CHANGELOG.md
CHANGED
|
@@ -84,6 +84,8 @@ module SmartCore::Initializer
|
|
|
84
84
|
register_type(:class) { |value| value.is_a?(Class) }
|
|
85
85
|
# @since 0.5.0
|
|
86
86
|
register_type(:boolean) { |value| value.is_a?(TrueClass) || value.is_a?(FalseClass) }
|
|
87
|
+
# @since 0.5.1
|
|
88
|
+
register_type(:symbol) { |value| value.is_a?(Symbol) }
|
|
87
89
|
# @since 0.5.0
|
|
88
90
|
register_type(:__any__) { true }
|
|
89
91
|
end
|
data/lib/smart_core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smart_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rustam Ibragimov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coveralls
|
|
@@ -217,7 +217,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
- !ruby/object:Gem::Version
|
|
218
218
|
version: '0'
|
|
219
219
|
requirements: []
|
|
220
|
-
|
|
220
|
+
rubyforge_project:
|
|
221
|
+
rubygems_version: 2.7.6
|
|
221
222
|
signing_key:
|
|
222
223
|
specification_version: 4
|
|
223
224
|
summary: "(in active development) A set of common abstractions"
|