def_initialize 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: da9558b590f6a5b33da3f9871f016f3407be482fc9897da72f2161943d12aebd
4
+ data.tar.gz: 6bf1414cd27b93b2cdbcb45a813bbe6516f2cce65c28ae5d70a85710e0aa1249
5
+ SHA512:
6
+ metadata.gz: dba72131210affed9c9eb65d5e7397295cfcd4eda192c0fb87af25402d1d83016a7ff98caed26aac48a152b8254dfd6b9bf121c2ced1406c56b50c833447fa8f
7
+ data.tar.gz: 3ef56b6df19bd719dec4d92a2780ea8145c7bb3f3c303bc5685b20121331ef97864f90930d51ee3bb8e3470f8c77096a2fd32b562e5275e5f65d5cd4f5584c0a
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ .DS_Store
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ Metrics/LineLength:
2
+ Max: 100
3
+
4
+ Style/StringLiterals:
5
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.3.3
7
+ before_install: gem install bundler -v 2.0.1
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in def_initialize.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Anton Lee
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,60 @@
1
+ # DefInitialize (WIP)
2
+
3
+ Another approach to reduce initialization boilerplate
4
+
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'def_initialize'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install def_initialize
21
+
22
+ ## Usage
23
+
24
+ ```ruby
25
+ class Employee
26
+ include DefInitialize.with("name, uuid = SecureRandom.uuid, age, position: 'manager'")
27
+ end
28
+
29
+ # is the same as:
30
+
31
+ class Employee
32
+ attr_reader :name, :uuid, :age, :position
33
+
34
+ def initialize(name, uuid = SecureRandom.uuid, age:, position: 'manager')
35
+ @name = name
36
+ @uuid = uuid
37
+ @age = age
38
+ @position = position
39
+ end
40
+ end
41
+ ```
42
+
43
+ ### What should I do in more complex cases?
44
+
45
+ Just write old plain `def initialize`
46
+
47
+
48
+ ## Development
49
+
50
+ 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.
51
+
52
+ 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
53
+
54
+ ## Contributing
55
+
56
+ Bug reports and pull requests are welcome on GitHub at https://github.com/antoshalee/def_initialize.
57
+
58
+ ## License
59
+
60
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "def_initialize"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,28 @@
1
+
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'def_initialize/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'def_initialize'
8
+ spec.version = DefInitialize::VERSION
9
+ spec.authors = ['Anton Lee']
10
+ spec.email = ['antoshalee@gmail.com']
11
+
12
+ spec.summary = 'Define your initializer along with attribute readers in one line'
13
+ spec.homepage = 'https://github.com/antoshalee/def_initialize'
14
+ spec.license = 'MIT'
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ['lib']
24
+
25
+ spec.add_development_dependency 'bundler', '~> 2.0'
26
+ spec.add_development_dependency 'rake', '~> 10.0'
27
+ spec.add_development_dependency 'rspec', '~> 3.0'
28
+ end
@@ -0,0 +1,51 @@
1
+ require "def_initialize/version"
2
+
3
+ module DefInitialize
4
+ # Simply parses input string as a method parameter string
5
+ # It raises an exception, If it fails
6
+ # Otherwise returns all argument names including keyword arguments
7
+ class Parser
8
+ VAR_RE = /(\w+)/
9
+ ARG_RE = /#{VAR_RE}(?:\s=\s.+?)*/
10
+ ARGS_RE = /#{ARG_RE}(?:, #{ARG_RE})*/
11
+ KWARG_RE = /#{VAR_RE}:(?:\s.+?)*/
12
+ KWARGS_RE = /#{KWARG_RE}(?:, #{KWARG_RE})*/
13
+ RE = /\A#{ARGS_RE}(?:, #{KWARGS_RE})?\z/
14
+
15
+ class << self
16
+ def parse(str)
17
+ if(match_data = str.match(RE))
18
+ match_data.captures
19
+ else
20
+ raise ArgumentError, 'Failed to parse arguments'
21
+ end
22
+ end
23
+ end
24
+ end
25
+
26
+ class Mixin < Module
27
+ def initialize(args_str)
28
+ args = Parser.parse(args_str)
29
+
30
+ readers = args.map { |a| ":#{a}"}.join(", ")
31
+
32
+ body = args.reduce(''.dup) do |acc, arg|
33
+ acc << "@#{arg} = #{arg}\n"
34
+ end
35
+
36
+ module_eval <<-CODE, __FILE__, __LINE__ + 1
37
+ def initialize(#{args_str})
38
+ #{body}
39
+ end
40
+
41
+ attr_reader #{readers}
42
+ CODE
43
+ end
44
+ end
45
+
46
+ class << self
47
+ def with(args_str)
48
+ Mixin.new(args_str)
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,3 @@
1
+ module DefInitialize
2
+ VERSION = "0.0.1".freeze
3
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: def_initialize
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Anton Lee
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-03-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - antoshalee@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - ".travis.yml"
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - def_initialize.gemspec
73
+ - lib/def_initialize.rb
74
+ - lib/def_initialize/version.rb
75
+ homepage: https://github.com/antoshalee/def_initialize
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.0.3
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Define your initializer along with attribute readers in one line
98
+ test_files: []