schemable 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: fa2cca4c4cbbd264e1f14d9780c73286bb3bb119fee777a93f2fb9f14e2c5ec5
4
+ data.tar.gz: d34b73098370c2d0f6935201d83c8fa0a2053a2c93178934f0dda4fdc8c84b0f
5
+ SHA512:
6
+ metadata.gz: 9936f2dc682238f18b3c28f57095413803dfce601e8a79836f25b0453c79c0cd6c44095b4f637b7b12860bb81944c4bf4cfad729f9a2b98d5c3888613c345f39
7
+ data.tar.gz: 2885d12f6a87a9aa566286497e9ceab0faed713b623d99f640a0f75499cc17f00bf5f24f6ec21163d454e1521040c4bfb7738c59e2800b8038f9ad69cddb58a9
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,117 @@
1
+ require: rubocop-rails
2
+
3
+ AllCops:
4
+ NewCops: enable
5
+ SuggestExtensions: false
6
+ Layout/SpaceBeforeBrackets: # (new in 1.7)
7
+ Enabled: true
8
+ Layout/LineLength:
9
+ Max: 350
10
+ Lint/AmbiguousAssignment: # (new in 1.7)
11
+ Enabled: true
12
+ Lint/DeprecatedConstants: # (new in 1.8)
13
+ Enabled: true
14
+ Lint/DuplicateBranch: # (new in 1.3)
15
+ Enabled: true
16
+ Lint/DuplicateRegexpCharacterClassElement: # (new in 1.1)
17
+ Enabled: true
18
+ Lint/EmptyBlock: # (new in 1.1)
19
+ Enabled: true
20
+ Lint/EmptyClass: # (new in 1.3)
21
+ Enabled: true
22
+ Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
23
+ Enabled: true
24
+ Lint/NoReturnInBeginEndBlocks: # (new in 1.2)
25
+ Enabled: true
26
+ Lint/NumberedParameterAssignment: # (new in 1.9)
27
+ Enabled: true
28
+ Lint/OrAssignmentToConstant: # (new in 1.9)
29
+ Enabled: true
30
+ Lint/RedundantDirGlobSort: # (new in 1.8)
31
+ Enabled: true
32
+ Lint/SymbolConversion: # (new in 1.9)
33
+ Enabled: true
34
+ Lint/ToEnumArguments: # (new in 1.1)
35
+ Enabled: true
36
+ Lint/TripleQuotes: # (new in 1.9)
37
+ Enabled: true
38
+ Lint/UnexpectedBlockArity: # (new in 1.5)
39
+ Enabled: true
40
+ Lint/UnmodifiedReduceAccumulator: # (new in 1.1)
41
+ Enabled: true
42
+ Style/ArgumentsForwarding: # (new in 1.1)
43
+ Enabled: true
44
+ Style/CollectionCompact: # (new in 1.2)
45
+ Enabled: true
46
+ Style/DocumentDynamicEvalDefinition: # (new in 1.1)
47
+ Enabled: true
48
+ Style/Documentation:
49
+ Enabled: false
50
+ Style/FrozenStringLiteralComment:
51
+ Enabled: false
52
+ Style/EndlessMethod: # (new in 1.8)
53
+ Enabled: true
54
+ Style/HashConversion: # (new in 1.10)
55
+ Enabled: true
56
+ Style/HashExcept: # (new in 1.7)
57
+ Enabled: true
58
+ Style/IfWithBooleanLiteralBranches: # (new in 1.9)
59
+ Enabled: true
60
+ Style/NegatedIfElseCondition: # (new in 1.2)
61
+ Enabled: true
62
+ Style/NilLambda: # (new in 1.3)
63
+ Enabled: true
64
+ Style/RedundantArgument: # (new in 1.4)
65
+ Enabled: true
66
+ Style/SwapValues: # (new in 1.1)
67
+ Enabled: true
68
+ Rails/ActiveRecordCallbacksOrder: # (new in 2.7)
69
+ Enabled: true
70
+ Rails/AfterCommitOverride: # (new in 2.8)
71
+ Enabled: true
72
+ Rails/AttributeDefaultBlockValue: # (new in 2.9)
73
+ Enabled: true
74
+ Rails/FindById: # (new in 2.7)
75
+ Enabled: true
76
+ Rails/Inquiry: # (new in 2.7)
77
+ Enabled: true
78
+ Rails/MailerName: # (new in 2.7)
79
+ Enabled: true
80
+ Rails/MatchRoute: # (new in 2.7)
81
+ Enabled: true
82
+ Rails/NegateInclude: # (new in 2.7)
83
+ Enabled: true
84
+ Rails/Pluck: # (new in 2.7)
85
+ Enabled: true
86
+ Rails/PluckInWhere: # (new in 2.7)
87
+ Enabled: true
88
+ Rails/RenderInline: # (new in 2.7)
89
+ Enabled: true
90
+ Rails/RenderPlainText: # (new in 2.7)
91
+ Enabled: true
92
+ Rails/ShortI18n: # (new in 2.7)
93
+ Enabled: true
94
+ Rails/SquishedSQLHeredocs: # (new in 2.8)
95
+ Enabled: true
96
+ Rails/UniqueValidationWithoutIndex:
97
+ Enabled: false
98
+ Rails/WhereEquals: # (new in 2.9)
99
+ Enabled: true
100
+ Rails/WhereExists: # (new in 2.7)
101
+ Enabled: true
102
+ Rails/WhereNot: # (new in 2.8)
103
+ Enabled: true
104
+ Metrics/BlockLength:
105
+ Enabled: false
106
+ Metrics/AbcSize:
107
+ Enabled: false
108
+ Metrics/MethodLength:
109
+ Enabled: false
110
+ Metrics/CyclomaticComplexity:
111
+ Max: 15
112
+ Metrics/PerceivedComplexity:
113
+ Max: 15
114
+ Lint/DuplicateMethods: # Disables duplicate methods warning
115
+ Enabled: false
116
+ Gemspec/RequiredRubyVersion: # Disables required ruby version warning
117
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-05-10
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at hama127n@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec
6
+
7
+ gem "rake", "~> 13.0"
8
+ gem "rspec", "~> 3.0"
9
+ gem "rubocop", "~> 1.21"
10
+
11
+ group :development, :test do
12
+ gem 'jsonapi-rails', '~> 0.4.1'
13
+ gem 'factory_bot_rails', '~> 6.2'
14
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,128 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ schemable (0.1.0)
5
+ factory_bot_rails (>= 6.2.0)
6
+ jsonapi-rails (>= 0.4.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (7.0.4.3)
12
+ actionview (= 7.0.4.3)
13
+ activesupport (= 7.0.4.3)
14
+ rack (~> 2.0, >= 2.2.0)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
+ actionview (7.0.4.3)
19
+ activesupport (= 7.0.4.3)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
+ activesupport (7.0.4.3)
25
+ concurrent-ruby (~> 1.0, >= 1.0.2)
26
+ i18n (>= 1.6, < 2)
27
+ minitest (>= 5.1)
28
+ tzinfo (~> 2.0)
29
+ ast (2.4.2)
30
+ builder (3.2.4)
31
+ concurrent-ruby (1.2.2)
32
+ crass (1.0.6)
33
+ diff-lcs (1.5.0)
34
+ erubi (1.12.0)
35
+ factory_bot (6.2.1)
36
+ activesupport (>= 5.0.0)
37
+ factory_bot_rails (6.2.0)
38
+ factory_bot (~> 6.2.0)
39
+ railties (>= 5.0.0)
40
+ i18n (1.13.0)
41
+ concurrent-ruby (~> 1.0)
42
+ json (2.6.3)
43
+ jsonapi-deserializable (0.2.0)
44
+ jsonapi-parser (0.1.1)
45
+ jsonapi-rails (0.4.1)
46
+ jsonapi-parser (~> 0.1.0)
47
+ jsonapi-rb (~> 0.5.0)
48
+ jsonapi-rb (0.5.0)
49
+ jsonapi-deserializable (~> 0.2.0)
50
+ jsonapi-serializable (~> 0.3.0)
51
+ jsonapi-renderer (0.2.2)
52
+ jsonapi-serializable (0.3.1)
53
+ jsonapi-renderer (~> 0.2.0)
54
+ loofah (2.21.2)
55
+ crass (~> 1.0.2)
56
+ nokogiri (>= 1.12.0)
57
+ method_source (1.0.0)
58
+ minitest (5.18.0)
59
+ nokogiri (1.14.4-x86_64-linux)
60
+ racc (~> 1.4)
61
+ parallel (1.23.0)
62
+ parser (3.2.2.1)
63
+ ast (~> 2.4.1)
64
+ racc (1.6.2)
65
+ rack (2.2.7)
66
+ rack-test (2.1.0)
67
+ rack (>= 1.3)
68
+ rails-dom-testing (2.0.3)
69
+ activesupport (>= 4.2.0)
70
+ nokogiri (>= 1.6)
71
+ rails-html-sanitizer (1.5.0)
72
+ loofah (~> 2.19, >= 2.19.1)
73
+ railties (7.0.4.3)
74
+ actionpack (= 7.0.4.3)
75
+ activesupport (= 7.0.4.3)
76
+ method_source
77
+ rake (>= 12.2)
78
+ thor (~> 1.0)
79
+ zeitwerk (~> 2.5)
80
+ rainbow (3.1.1)
81
+ rake (13.0.6)
82
+ regexp_parser (2.8.0)
83
+ rexml (3.2.5)
84
+ rspec (3.12.0)
85
+ rspec-core (~> 3.12.0)
86
+ rspec-expectations (~> 3.12.0)
87
+ rspec-mocks (~> 3.12.0)
88
+ rspec-core (3.12.2)
89
+ rspec-support (~> 3.12.0)
90
+ rspec-expectations (3.12.3)
91
+ diff-lcs (>= 1.2.0, < 2.0)
92
+ rspec-support (~> 3.12.0)
93
+ rspec-mocks (3.12.5)
94
+ diff-lcs (>= 1.2.0, < 2.0)
95
+ rspec-support (~> 3.12.0)
96
+ rspec-support (3.12.0)
97
+ rubocop (1.51.0)
98
+ json (~> 2.3)
99
+ parallel (~> 1.10)
100
+ parser (>= 3.2.0.0)
101
+ rainbow (>= 2.2.2, < 4.0)
102
+ regexp_parser (>= 1.8, < 3.0)
103
+ rexml (>= 3.2.5, < 4.0)
104
+ rubocop-ast (>= 1.28.0, < 2.0)
105
+ ruby-progressbar (~> 1.7)
106
+ unicode-display_width (>= 2.4.0, < 3.0)
107
+ rubocop-ast (1.28.1)
108
+ parser (>= 3.2.1.0)
109
+ ruby-progressbar (1.13.0)
110
+ thor (1.2.2)
111
+ tzinfo (2.0.6)
112
+ concurrent-ruby (~> 1.0)
113
+ unicode-display_width (2.4.2)
114
+ zeitwerk (2.6.8)
115
+
116
+ PLATFORMS
117
+ x86_64-linux
118
+
119
+ DEPENDENCIES
120
+ factory_bot_rails (~> 6.2)
121
+ jsonapi-rails (~> 0.4.1)
122
+ rake (~> 13.0)
123
+ rspec (~> 3.0)
124
+ rubocop (~> 1.21)
125
+ schemable!
126
+
127
+ BUNDLED WITH
128
+ 2.4.12
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Muhammad Nawzad
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,39 @@
1
+ # Schemable
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/schemable`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/schemable. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/schemable/blob/master/CODE_OF_CONDUCT.md).
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the Schemable project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/schemable/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,29 @@
1
+ module Schemable
2
+ class InstallGenerator < Rails::Generators::Base
3
+
4
+ source_root File.expand_path('../../templates', __dir__)
5
+ class_option :model_name, type: :string, default: 'Model', desc: 'Name of the model'
6
+
7
+ def initialize(*)
8
+ super(*)
9
+ end
10
+
11
+ def copy_initializer
12
+ target_path = 'spec/swagger/common_definitions.rb'
13
+
14
+ if Rails.root.join(target_path).exist?
15
+ say_status('skipped', 'Common definitions already exists')
16
+ else
17
+ copy_file('common_definitions.rb', target_path)
18
+ end
19
+
20
+ target_path = 'app/helpers/serializers_helper.rb'
21
+
22
+ if Rails.root.join(target_path).exist?
23
+ say_status('skipped', 'Serializers helper already exists')
24
+ else
25
+ copy_file('serializers_helper.rb', target_path)
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,53 @@
1
+ module Schemable
2
+ class ModelGenerator < Rails::Generators::Base
3
+
4
+ source_root File.expand_path('../../templates', __dir__)
5
+ class_option :model_name, type: :string, default: 'Model', desc: 'Name of the model'
6
+
7
+ def initialize(*)
8
+ super(*)
9
+
10
+ @model_name = options[:model_name]
11
+ @model_name != 'Model' || raise('Model name is required')
12
+ end
13
+
14
+ def copy_initializer
15
+ target_path = "lib/swagger/definitions/#{@model_name.underscore.downcase.singlurize}.rb"
16
+
17
+ if Rails.root.join(target_path).exist?
18
+ say_status('skipped', 'Model definition already exists')
19
+ else
20
+
21
+ create_file(target_path, <<-FILE
22
+ require './lib/swagger/concerns/schemable'
23
+
24
+ module Swagger
25
+ module Definitions
26
+ class #{@model_name.classify}
27
+
28
+ include Schemable
29
+ include SerializersHelper # This is a helper module that contains a method "serializers_map" that maps models to serializers
30
+
31
+ attr_accessor :instance
32
+
33
+ def initialize
34
+ @instance ||= JSONAPI::Serializable::Renderer.new.render(FactoryBot.create(:#{@model_name.underscore.downcase.singlurize}), class: serializers_map, include: [])
35
+ end
36
+
37
+ def serializer
38
+ V1::#{@model_name.classify}Serializer
39
+ end
40
+
41
+ def excluded_request_attributes
42
+ %i[id updatedAt createdAt]
43
+ end
44
+ end
45
+ end
46
+ end
47
+ FILE
48
+ )
49
+
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Schemable
4
+ VERSION = "0.1.0"
5
+ end