smart_initializer 0.1.0.alpha1 → 0.1.0.alpha2

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: cd7d1a7f5aa327457a601a1b1a0110d8178e6bd83b557a53365e0cf96d336080
4
- data.tar.gz: 1487df01e94537cf79292f293f525f9ecde081edb0438e61d9674c7b2ac2cf6b
3
+ metadata.gz: f835709c40984d70109e260c33764194c3f63422f37dafa4ba32b8b3b29b745d
4
+ data.tar.gz: de748657c5ac079a378e916c24eb7781ecc40790b429c97d9af1bffc74129200
5
5
  SHA512:
6
- metadata.gz: 7395f7428558b2a891090376c455c0a2cd4a8d730e615d69a1d33aeac2703bae64642e9a0024072c2efbdc4dfdff9bbe8ae26481ea6706e8355825fb30bf8559
7
- data.tar.gz: 662340beb7c3d1980d6870b9a9d555e8e86191c08fda50c9925ed99ba065b99e2bb6d6de9b906521298fa1add43a955ee5cd9f2bd9bdad67f04e58a7ee72be5f
6
+ metadata.gz: 79232e232cf4f5148fd3f98e87093a6b06fbfbaf8773e497dff082dde601101dbc4fe7ca9ed10de55d4559a6d2d03eb30659299ac7d1018f296884fb7ab0f3ed
7
+ data.tar.gz: 9e8ac0af865c59a16535a70ae9006cd0de3cc9b680354401f81d9de8baba6524f2fd008cba0404600cd0b160cf21500dd3e5da63c02034e43ab2337e1c7d47c7
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- smart_initializer (0.1.0)
4
+ smart_initializer (0.1.0.alpha1)
5
5
  smart_engine (~> 0.5)
6
- smart_types (~> 0.1.0.alpha4)
6
+ smart_types (~> 0.1.0.alpha6)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -61,7 +61,7 @@ GEM
61
61
  simplecov-html (~> 0.10.0)
62
62
  simplecov-html (0.10.2)
63
63
  smart_engine (0.5.0)
64
- smart_types (0.1.0.alpha4)
64
+ smart_types (0.1.0.alpha6)
65
65
  smart_engine (~> 0.5)
66
66
  unicode-display_width (1.6.1)
67
67
 
@@ -72,8 +72,7 @@ class SmartCore::Initializer::TypeAliasing::AliasList
72
72
  def set_alias(alias_name, type)
73
73
  alias_name = normalized_alias(alias_name)
74
74
  ::Warning.warn( # TODO: SmartCore::Engine::Instrumenting
75
- "[SmartCore::Initializer] Type alias with name \"#{alias_name}\"" \
76
- ' is already exists and shadowed by new type.'
75
+ "[SmartCore::Initializer] Shadowing of already existing \"#{alias_name}\" type alias."
77
76
  ) if list.key?(alias_name)
78
77
  list[normalized_alias(alias_name)] = type
79
78
  end
@@ -6,6 +6,6 @@ module SmartCore
6
6
  #
7
7
  # @api public
8
8
  # @since 0.1.0
9
- VERSION = '0.1.0.alpha1'
9
+ VERSION = '0.1.0.alpha2'
10
10
  end
11
11
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = 'Initializer DSL'
14
14
  spec.description = 'A simple and convenient way to declare complex constructors.'
15
- spec.homepage = 'https://github.com/smart-rb/smart_initialier'
15
+ spec.homepage = 'https://github.com/smart-rb/smart_initializer'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  spec.metadata['homepage_uri'] = spec.homepage
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.require_paths = ['lib']
29
29
 
30
30
  spec.add_dependency 'smart_engine', '~> 0.5'
31
- spec.add_dependency 'smart_types', '~> 0.1.0.alpha4'
31
+ spec.add_dependency 'smart_types', '~> 0.1.0.alpha6'
32
32
 
33
33
  spec.add_development_dependency 'bundler', '~> 2.1'
34
34
  spec.add_development_dependency 'rake', '~> 13.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_initializer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha1
4
+ version: 0.1.0.alpha2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-01-25 00:00:00.000000000 Z
11
+ date: 2020-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: smart_engine
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0.alpha4
33
+ version: 0.1.0.alpha6
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.1.0.alpha4
40
+ version: 0.1.0.alpha6
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -146,11 +146,11 @@ files:
146
146
  - lib/smart_core/initializer/type_aliasing/alias_list.rb
147
147
  - lib/smart_core/initializer/version.rb
148
148
  - smart_initializer.gemspec
149
- homepage: https://github.com/smart-rb/smart_initialier
149
+ homepage: https://github.com/smart-rb/smart_initializer
150
150
  licenses:
151
151
  - MIT
152
152
  metadata:
153
- homepage_uri: https://github.com/smart-rb/smart_initialier
153
+ homepage_uri: https://github.com/smart-rb/smart_initializer
154
154
  source_code_uri: https://github.com/smart-rb/smart_initializer
155
155
  changelog_uri: https://github.com/smart-rb/smart_initializer/blob/master/CHANGELOG.md
156
156
  post_install_message: