smart_schema 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c706c75fb8750b103a43fc3d26d6468b8f5d0df947052786455bd2ae47e08c0
4
- data.tar.gz: b0b0f27000026c693d5edb3955176b49c9bb9e5b0b57e3dbf82607237a0b97f4
3
+ metadata.gz: d47d612d086eb28e3984c46a50249a5b95e4352332fcf84b71150af448e6c928
4
+ data.tar.gz: 56a485fd25bcbc342f0d52f8a5c4a2aa061787115f74cdcd2bef1229c363486a
5
5
  SHA512:
6
- metadata.gz: 88eb109a2e09991e1a97a9aec06147da09648b6e135d28dab9b1145adc07479f26c306da0db2ecc677405553358c4c8e5eae468f793d2ca91a4c625495a836e8
7
- data.tar.gz: 91add3a557ec9e6725b91c9c1dfcb2039a7169a8379740f5d78f8f2423d97d23e377aa960f5a54fca01f06602bddc641cbc05d0b7d8c6a8dd2db03a02a2d8554
6
+ metadata.gz: 4a25855f0dd7f3fa82fc8c786ee1c76862e42765149fa98b88f20e052a32fdcbf39854aa1384cb3fcb8dc665abe8a26d6a5642f65e81167af143070e4eee084a
7
+ data.tar.gz: '0961c98733a1449e9a38f0d29f2caf85638c04d8a918e172f42f79cc91399db4f7f7b483988a0ea519b0a5c769c84df6264cafbdcda63fd8f95c77773552c151'
@@ -12,7 +12,7 @@ AllCops:
12
12
  - spec/**/*.rb
13
13
  - Gemfile
14
14
  - Rakefile
15
- - smart_operation.gemspec
15
+ - smart_schema.gemspec
16
16
  - bin/console
17
17
 
18
18
  # NOTE: It is not suitable for infrastracture-level frameworks
@@ -1,7 +1,11 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- # [0.4.0] - 2020-01-18
4
+ # [0.5.0] - 2021-01-18
5
+ ## Changed
6
+ - Updated `smart_types` dependency (`~> 0.4.0`) to guarantee **Ruby@3** compatability;
7
+
8
+ # [0.4.0] - 2021-01-18
5
9
  ## Added
6
10
  - Support for **Ruby@3**;
7
11
 
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- smart_schema (0.4.0)
4
+ smart_schema (0.5.0)
5
5
  smart_engine (~> 0.11)
6
- smart_types (~> 0.3)
6
+ smart_types (~> 0.4)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -84,8 +84,8 @@ GEM
84
84
  simplecov-html (0.12.3)
85
85
  simplecov_json_formatter (0.1.2)
86
86
  smart_engine (0.11.0)
87
- smart_types (0.3.0)
88
- smart_engine (~> 0.10)
87
+ smart_types (0.4.0)
88
+ smart_engine (~> 0.11)
89
89
  tzinfo (2.0.4)
90
90
  concurrent-ruby (~> 1.0)
91
91
  unicode-display_width (1.7.0)
@@ -7,8 +7,8 @@ module SmartCore
7
7
  #
8
8
  # @api public
9
9
  # @since 0.1.0
10
- # @version 0.4.0
11
- VERSION = '0.4.0'
10
+ # @version 0.5.0
11
+ VERSION = '0.5.0'
12
12
  end
13
13
  # rubocop:enable Style/StaticClass
14
14
  end
@@ -1,12 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative 'lib/smart_core/schema/version'
2
4
 
3
5
  Gem::Specification.new do |spec|
4
6
  spec.required_ruby_version = Gem::Requirement.new('>= 2.5.8')
5
7
 
6
- spec.name = "smart_schema"
8
+ spec.name = 'smart_schema'
7
9
  spec.version = SmartCore::Schema::VERSION
8
- spec.authors = ["Rustam Ibragimov"]
9
- spec.email = ["iamdaiver@gmail.com"]
10
+ spec.authors = ['Rustam Ibragimov']
11
+ spec.email = ['iamdaiver@gmail.com']
10
12
 
11
13
  spec.summary = 'SmartCore::Schema is a schema validator for Hash-like data structures'
12
14
  spec.description = 'SmartCore::Schema is a schema validator for Hash-like data structures'
@@ -29,7 +31,7 @@ Gem::Specification.new do |spec|
29
31
  spec.require_paths = ['lib']
30
32
 
31
33
  spec.add_dependency 'smart_engine', '~> 0.11'
32
- spec.add_dependency 'smart_types', '~> 0.3'
34
+ spec.add_dependency 'smart_types', '~> 0.4'
33
35
 
34
36
  spec.add_development_dependency 'pry', '~> 0.13'
35
37
  spec.add_development_dependency 'bundler', '~> 2.2'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.3'
33
+ version: '0.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.3'
40
+ version: '0.4'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pry
43
43
  requirement: !ruby/object:Gem::Requirement