smart_initializer 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +19 -0
- data/.travis.yml +20 -0
- data/CHANGELOG.md +2 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +80 -0
- data/LICENSE.txt +21 -0
- data/README.md +55 -0
- data/Rakefile +21 -0
- data/bin/console +8 -0
- data/bin/setup +8 -0
- data/lib/smart_core/initializer.rb +24 -0
- data/lib/smart_core/initializer/attribute.rb +68 -0
- data/lib/smart_core/initializer/attribute/definer.rb +180 -0
- data/lib/smart_core/initializer/attribute/factory.rb +140 -0
- data/lib/smart_core/initializer/attribute/finalizer.rb +37 -0
- data/lib/smart_core/initializer/attribute/finalizer/anonymous_block.rb +32 -0
- data/lib/smart_core/initializer/attribute/finalizer/instance_method.rb +32 -0
- data/lib/smart_core/initializer/attribute/list.rb +64 -0
- data/lib/smart_core/initializer/attribute/parameters.rb +97 -0
- data/lib/smart_core/initializer/dsl.rb +110 -0
- data/lib/smart_core/initializer/errors.rb +19 -0
- data/lib/smart_core/initializer/version.rb +11 -0
- data/smart_initializer.gemspec +38 -0
- metadata +170 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d1b4aa0c7cf388c9c8850de3e66fd99ff3d71089c9124fa3171021b9ac4bdf55
|
4
|
+
data.tar.gz: bf210ab1832172055ea2161f4768880f771cb16a9caecd4fcca3ee1435173061
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 559533da54f15b415903c2ff29f52195b5679e7a1e38e2d7670f7694a08d4d65d1a427b5aab2315939edc6a56daed0f9a1b51f644826cf11a921e571d0901b46
|
7
|
+
data.tar.gz: 5b7d885e1ded34497140189aa8fb0247324232cc3fababd59cfea2516163c8fda37b4aa25e2e649ed3a344a017ec9233d84c2144b274c2b58380703f5428169c
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
inherit_gem:
|
2
|
+
armitage-rubocop:
|
3
|
+
- lib/rubocop.general.yml
|
4
|
+
- lib/rubocop.rake.yml
|
5
|
+
- lib/rubocop.rspec.yml
|
6
|
+
|
7
|
+
AllCops:
|
8
|
+
TargetRubyVersion: 2.4.9
|
9
|
+
Include:
|
10
|
+
- lib/**/*.rb
|
11
|
+
- spec/**/*.rb
|
12
|
+
- Gemfile
|
13
|
+
- Rakefile
|
14
|
+
- smart_initializer.gemspec
|
15
|
+
- bin/console
|
16
|
+
|
17
|
+
# NOTE: It is not suitable for infrastracture-level frameworks
|
18
|
+
Metrics/ParameterLists:
|
19
|
+
Enabled: false
|
data/.travis.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
language: ruby
|
3
|
+
cache: bundler
|
4
|
+
os: linux
|
5
|
+
before_install: gem install bundler -v 2.1.2
|
6
|
+
script:
|
7
|
+
- bundle exec rake rubocop
|
8
|
+
- bundle exec rake rspec
|
9
|
+
jobs:
|
10
|
+
fast_finish: true
|
11
|
+
include:
|
12
|
+
- rvm: 2.4.9
|
13
|
+
- rvm: 2.5.7
|
14
|
+
- rvm: 2.6.5
|
15
|
+
- rvm: 2.7.0
|
16
|
+
- rvm: ruby-head
|
17
|
+
- rvm: jruby-head
|
18
|
+
allow_failures:
|
19
|
+
- rvm: ruby-head
|
20
|
+
- rvm: jruby-head
|
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at iamdaiver@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
smart_initializer (0.1.0)
|
5
|
+
smart_engine (~> 0.4)
|
6
|
+
smart_types (~> 0.1.0.alpha)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
armitage-rubocop (0.79.0)
|
12
|
+
rubocop (= 0.79.0)
|
13
|
+
rubocop-performance (= 1.5.2)
|
14
|
+
rubocop-rails (= 2.4.1)
|
15
|
+
rubocop-rake (= 0.5.0)
|
16
|
+
rubocop-rspec (= 1.37.1)
|
17
|
+
ast (2.4.0)
|
18
|
+
diff-lcs (1.3)
|
19
|
+
docile (1.3.2)
|
20
|
+
jaro_winkler (1.5.4)
|
21
|
+
json (2.3.0)
|
22
|
+
parallel (1.19.1)
|
23
|
+
parser (2.7.0.2)
|
24
|
+
ast (~> 2.4.0)
|
25
|
+
rack (2.1.1)
|
26
|
+
rainbow (3.0.0)
|
27
|
+
rake (13.0.1)
|
28
|
+
rspec (3.9.0)
|
29
|
+
rspec-core (~> 3.9.0)
|
30
|
+
rspec-expectations (~> 3.9.0)
|
31
|
+
rspec-mocks (~> 3.9.0)
|
32
|
+
rspec-core (3.9.1)
|
33
|
+
rspec-support (~> 3.9.1)
|
34
|
+
rspec-expectations (3.9.0)
|
35
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
+
rspec-support (~> 3.9.0)
|
37
|
+
rspec-mocks (3.9.1)
|
38
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
+
rspec-support (~> 3.9.0)
|
40
|
+
rspec-support (3.9.2)
|
41
|
+
rubocop (0.79.0)
|
42
|
+
jaro_winkler (~> 1.5.1)
|
43
|
+
parallel (~> 1.10)
|
44
|
+
parser (>= 2.7.0.1)
|
45
|
+
rainbow (>= 2.2.2, < 4.0)
|
46
|
+
ruby-progressbar (~> 1.7)
|
47
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
48
|
+
rubocop-performance (1.5.2)
|
49
|
+
rubocop (>= 0.71.0)
|
50
|
+
rubocop-rails (2.4.1)
|
51
|
+
rack (>= 1.1)
|
52
|
+
rubocop (>= 0.72.0)
|
53
|
+
rubocop-rake (0.5.0)
|
54
|
+
rubocop
|
55
|
+
rubocop-rspec (1.37.1)
|
56
|
+
rubocop (>= 0.68.1)
|
57
|
+
ruby-progressbar (1.10.1)
|
58
|
+
simplecov (0.17.1)
|
59
|
+
docile (~> 1.1)
|
60
|
+
json (>= 1.8, < 3)
|
61
|
+
simplecov-html (~> 0.10.0)
|
62
|
+
simplecov-html (0.10.2)
|
63
|
+
smart_engine (0.4.0)
|
64
|
+
smart_types (0.1.0.alpha)
|
65
|
+
smart_engine (~> 0.4)
|
66
|
+
unicode-display_width (1.6.1)
|
67
|
+
|
68
|
+
PLATFORMS
|
69
|
+
ruby
|
70
|
+
|
71
|
+
DEPENDENCIES
|
72
|
+
armitage-rubocop (~> 0.78)
|
73
|
+
bundler (~> 2.1)
|
74
|
+
rake (~> 13.0)
|
75
|
+
rspec (~> 3.9)
|
76
|
+
simplecov (~> 0.17)
|
77
|
+
smart_initializer!
|
78
|
+
|
79
|
+
BUNDLED WITH
|
80
|
+
2.1.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Rustam Ibragimov
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# SmartCore::Initializer · [![Gem Version](https://badge.fury.io/rb/smart_initializer.svg)](https://badge.fury.io/rb/smart_initializer) [![Build Status](https://travis-ci.org/smart-rb/smart_initializer.svg?branch=master)](https://travis-ci.org/smart-rb/smart_initializer)
|
2
|
+
|
3
|
+
A simple and convenient way to declare complex constructors (**in active development**).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'smart_initializer'
|
9
|
+
```
|
10
|
+
|
11
|
+
```shell
|
12
|
+
bundle install
|
13
|
+
# --- or ---
|
14
|
+
gem install smart_types
|
15
|
+
```
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
require 'smart_core/types'
|
19
|
+
```
|
20
|
+
|
21
|
+
---
|
22
|
+
|
23
|
+
## Synopsis (DEMO)
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
class User
|
27
|
+
include SmartCore::Initializer
|
28
|
+
|
29
|
+
param :user_id, SmartCore::Types::Value::Integer, cast: false, privacy: :public
|
30
|
+
option :role, default: :user, finalize: -> { |value| Role.find(name: value) }
|
31
|
+
|
32
|
+
params :name, :password
|
33
|
+
options :metadata, :enabled
|
34
|
+
end
|
35
|
+
|
36
|
+
User.new(1, 'John', 'test123', role: :admin, metadata: {}, enabled: false)
|
37
|
+
```
|
38
|
+
|
39
|
+
---
|
40
|
+
|
41
|
+
## Contributing
|
42
|
+
|
43
|
+
- Fork it ( https://github.com/smart-rb/smart_initializer )
|
44
|
+
- Create your feature branch (`git checkout -b feature/my-new-feature`)
|
45
|
+
- Commit your changes (`git commit -am '[feature_context] Add some feature'`)
|
46
|
+
- Push to the branch (`git push origin feature/my-new-feature`)
|
47
|
+
- Create new Pull Request
|
48
|
+
|
49
|
+
## License
|
50
|
+
|
51
|
+
Released under MIT License.
|
52
|
+
|
53
|
+
## Authors
|
54
|
+
|
55
|
+
[Rustam Ibragimov](https://github.com/0exp)
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/gem_tasks'
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
require 'rubocop'
|
6
|
+
require 'rubocop/rake_task'
|
7
|
+
require 'rubocop-performance'
|
8
|
+
require 'rubocop-rspec'
|
9
|
+
require 'rubocop-rake'
|
10
|
+
|
11
|
+
RuboCop::RakeTask.new(:rubocop) do |t|
|
12
|
+
config_path = File.expand_path(File.join('.rubocop.yml'), __dir__)
|
13
|
+
t.options = ['--config', config_path]
|
14
|
+
t.requires << 'rubocop-performance'
|
15
|
+
t.requires << 'rubocop-rspec'
|
16
|
+
t.requires << 'rubocop-rake'
|
17
|
+
end
|
18
|
+
|
19
|
+
RSpec::Core::RakeTask.new(:rspec)
|
20
|
+
|
21
|
+
task default: :rspec
|
data/bin/console
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'smart_core'
|
4
|
+
require 'smart_core/types'
|
5
|
+
|
6
|
+
# @api public
|
7
|
+
# @since 0.1.0
|
8
|
+
module SmartCore::Initializer
|
9
|
+
require_relative 'initializer/version'
|
10
|
+
require_relative 'initializer/errors'
|
11
|
+
require_relative 'initializer/attribute'
|
12
|
+
require_relative 'initializer/dsl'
|
13
|
+
|
14
|
+
class << self
|
15
|
+
# @param base_klass [Class]
|
16
|
+
# @return [void]
|
17
|
+
#
|
18
|
+
# @api private
|
19
|
+
# @since 0.1.0
|
20
|
+
def included(base_klass)
|
21
|
+
base_klass.include(SmartCore::Initializer::DSL)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# @api private
|
4
|
+
# @since 0.1.0
|
5
|
+
class SmartCore::Initializer::Attribute
|
6
|
+
require_relative 'attribute/parameters'
|
7
|
+
require_relative 'attribute/list'
|
8
|
+
require_relative 'attribute/finalizer'
|
9
|
+
require_relative 'attribute/definer'
|
10
|
+
require_relative 'attribute/factory'
|
11
|
+
|
12
|
+
# @since 0.1.0
|
13
|
+
extend Forwardable
|
14
|
+
|
15
|
+
# @retirn [String]
|
16
|
+
#
|
17
|
+
# @since 0.1.0
|
18
|
+
# @version 0.1.0
|
19
|
+
def_delegator :parameters, :name
|
20
|
+
|
21
|
+
# @retirn [SmartCore::Types::Primitive]
|
22
|
+
#
|
23
|
+
# @since 0.1.0
|
24
|
+
# @version 0.1.0
|
25
|
+
def_delegator :parameters, :type
|
26
|
+
|
27
|
+
# @retirn [Symbol]
|
28
|
+
#
|
29
|
+
# @since 0.1.0
|
30
|
+
# @version 0.1.0
|
31
|
+
def_delegator :parameters, :privacy
|
32
|
+
|
33
|
+
# @retirn [SmartCore::Initializer::Attribute::Finalizer::AnonymousBlock/InstanceMethod]
|
34
|
+
#
|
35
|
+
# @since 0.1.0
|
36
|
+
# @version 0.1.0
|
37
|
+
def_delegator :parameters, :finalizer
|
38
|
+
|
39
|
+
# @retirn [Boolean]
|
40
|
+
#
|
41
|
+
# @since 0.1.0
|
42
|
+
# @version 0.1.0
|
43
|
+
def_delegator :parameters, :cast
|
44
|
+
|
45
|
+
# @param name [String]
|
46
|
+
# @param type [SmartCore::Types::Primitive]
|
47
|
+
# @param privacy [Symbol]
|
48
|
+
# @param finalizer [SmartCore::Initializer::Attribute::Finalizer::AnonymousBlock/InstanceMethod]
|
49
|
+
# @param cast [Boolean]
|
50
|
+
# @param dynamic_options [Hash<Symbol,Any>]
|
51
|
+
# @return [void]
|
52
|
+
#
|
53
|
+
# @api private
|
54
|
+
# @since 0.1.0
|
55
|
+
def initialize(name, type, privacy, finalizer, cast, dynamic_options)
|
56
|
+
@parameters = SmartCore::Initializer::Attribute::Parameters.new(
|
57
|
+
name, type, privacy, finalizer, cast, dynamic_options
|
58
|
+
)
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
|
63
|
+
# @return [SmartCore::Initializer::Attribute::Parameters]
|
64
|
+
#
|
65
|
+
# @api private
|
66
|
+
# @since 0.1.0
|
67
|
+
attr_reader :parameters
|
68
|
+
end
|