csvbuilder-core 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +21 -0
- data/.rubocop_todo.yml +53 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +81 -0
- data/LICENSE.txt +21 -0
- data/README.md +37 -0
- data/Rakefile +14 -0
- data/gemfiles/Gemfile.5.2._gemfile +14 -0
- data/gemfiles/Gemfile.6.1._gemfile +14 -0
- data/gemfiles/Gemfile.7.0._gemfile +14 -0
- data/lib/csvbuilder/core/concerns/attributes_base.rb +83 -0
- data/lib/csvbuilder/core/concerns/model/attributes.rb +69 -0
- data/lib/csvbuilder/core/concerns/model/base.rb +20 -0
- data/lib/csvbuilder/core/concerns/proxy.rb +17 -0
- data/lib/csvbuilder/core/internal/attribute_base.rb +24 -0
- data/lib/csvbuilder/core/internal/concerns/column_shared.rb +16 -0
- data/lib/csvbuilder/core/internal/model/header.rb +27 -0
- data/lib/csvbuilder/core/public/model.rb +13 -0
- data/lib/csvbuilder/core/version.rb +7 -0
- data/lib/csvbuilder/core.rb +13 -0
- data/sig/csvbuilder/core.rbs +6 -0
- metadata +85 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6fedadf90c335d82df4347aa2a392fe4f56a62edd1b0393eebb2bd45890f5258
|
4
|
+
data.tar.gz: 9a48a9988939ff7b250094d8753809c2fe087d4275eda6d0fd211129fc98983b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e3294efe3fc87cc1587cb847c5e10d855ea7c1823d88100b4ec950847d67e5f0c12d8df35fc8a0a2831b2f54c91206063cc5e5cc7d602039bd012d669c3fd288
|
7
|
+
data.tar.gz: 502e564b3cce9c62c8092c4642328aaee0761557a0f4f8d32731e900106d3566281150d56751a2c881b672b5648dcce7db243a5cf94bea5b4a98161948f6f1db
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
require:
|
4
|
+
- rubocop-performance
|
5
|
+
- rubocop-rake
|
6
|
+
- rubocop-rspec
|
7
|
+
|
8
|
+
AllCops:
|
9
|
+
NewCops: enable
|
10
|
+
TargetRubyVersion: 2.6
|
11
|
+
|
12
|
+
Style/StringLiterals:
|
13
|
+
Enabled: true
|
14
|
+
EnforcedStyle: double_quotes
|
15
|
+
|
16
|
+
Style/StringLiteralsInInterpolation:
|
17
|
+
Enabled: true
|
18
|
+
EnforcedStyle: double_quotes
|
19
|
+
|
20
|
+
Layout/LineLength:
|
21
|
+
Max: 120
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2022-12-16 10:22:17 UTC using RuboCop version 1.39.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
# This cop supports safe autocorrection (--autocorrect).
|
11
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
|
12
|
+
# URISchemes: http, https
|
13
|
+
Layout/LineLength:
|
14
|
+
Max: 147
|
15
|
+
Exclude:
|
16
|
+
- 'lib/csvbuilder/core/concerns/attributes_base.rb'
|
17
|
+
|
18
|
+
# Offense count: 1
|
19
|
+
# Configuration parameters: CountAsOne.
|
20
|
+
RSpec/ExampleLength:
|
21
|
+
Max: 6
|
22
|
+
|
23
|
+
# Offense count: 4
|
24
|
+
RSpec/MultipleExpectations:
|
25
|
+
Max: 3
|
26
|
+
|
27
|
+
# Offense count: 1
|
28
|
+
# Configuration parameters: AllowedPatterns.
|
29
|
+
# AllowedPatterns: ^expect_, ^assert_
|
30
|
+
RSpec/NoExpectationExample:
|
31
|
+
Exclude:
|
32
|
+
- 'spec/support/shared_examples/methods/define_attribute_method.rb'
|
33
|
+
|
34
|
+
# Offense count: 7
|
35
|
+
# Configuration parameters: AllowedConstants.
|
36
|
+
Style/Documentation:
|
37
|
+
Exclude:
|
38
|
+
- 'spec/**/*'
|
39
|
+
- 'test/**/*'
|
40
|
+
- 'lib/csvbuilder/core/concerns/attributes_base.rb'
|
41
|
+
- 'lib/csvbuilder/core/concerns/model/attributes.rb'
|
42
|
+
- 'lib/csvbuilder/core/concerns/model/base.rb'
|
43
|
+
- 'lib/csvbuilder/core/concerns/proxy.rb'
|
44
|
+
- 'lib/csvbuilder/core/internal/attribute_base.rb'
|
45
|
+
- 'lib/csvbuilder/core/internal/concerns/column_shared.rb'
|
46
|
+
- 'lib/csvbuilder/core/internal/model/header.rb'
|
47
|
+
|
48
|
+
# Offense count: 3
|
49
|
+
Style/OpenStructUse:
|
50
|
+
Exclude:
|
51
|
+
- 'lib/csvbuilder/core/concerns/model/base.rb'
|
52
|
+
- 'lib/csvbuilder/core/internal/model/header.rb'
|
53
|
+
- 'spec/support/fixtures/concerns/basic_attributes.rb'
|
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -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 joel.azemar@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,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in csvbuilder-core.gemspec
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
gem "rake"
|
9
|
+
|
10
|
+
gem "rspec"
|
11
|
+
|
12
|
+
gem "rubocop"
|
13
|
+
|
14
|
+
gem "rubocop-performance"
|
15
|
+
gem "rubocop-rake"
|
16
|
+
gem "rubocop-rspec"
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
csvbuilder-core (0.1.0)
|
5
|
+
activesupport (= 5.2.8.1)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (5.2.8.1)
|
11
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
+
i18n (>= 0.7, < 2)
|
13
|
+
minitest (~> 5.1)
|
14
|
+
tzinfo (~> 1.1)
|
15
|
+
ast (2.4.2)
|
16
|
+
concurrent-ruby (1.1.10)
|
17
|
+
diff-lcs (1.5.0)
|
18
|
+
i18n (1.12.0)
|
19
|
+
concurrent-ruby (~> 1.0)
|
20
|
+
json (2.6.3)
|
21
|
+
minitest (5.16.3)
|
22
|
+
parallel (1.22.1)
|
23
|
+
parser (3.1.3.0)
|
24
|
+
ast (~> 2.4.1)
|
25
|
+
rainbow (3.1.1)
|
26
|
+
rake (13.0.6)
|
27
|
+
regexp_parser (2.6.1)
|
28
|
+
rexml (3.2.5)
|
29
|
+
rspec (3.12.0)
|
30
|
+
rspec-core (~> 3.12.0)
|
31
|
+
rspec-expectations (~> 3.12.0)
|
32
|
+
rspec-mocks (~> 3.12.0)
|
33
|
+
rspec-core (3.12.0)
|
34
|
+
rspec-support (~> 3.12.0)
|
35
|
+
rspec-expectations (3.12.0)
|
36
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
37
|
+
rspec-support (~> 3.12.0)
|
38
|
+
rspec-mocks (3.12.0)
|
39
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
40
|
+
rspec-support (~> 3.12.0)
|
41
|
+
rspec-support (3.12.0)
|
42
|
+
rubocop (1.40.0)
|
43
|
+
json (~> 2.3)
|
44
|
+
parallel (~> 1.10)
|
45
|
+
parser (>= 3.1.2.1)
|
46
|
+
rainbow (>= 2.2.2, < 4.0)
|
47
|
+
regexp_parser (>= 1.8, < 3.0)
|
48
|
+
rexml (>= 3.2.5, < 4.0)
|
49
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
50
|
+
ruby-progressbar (~> 1.7)
|
51
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
52
|
+
rubocop-ast (1.24.0)
|
53
|
+
parser (>= 3.1.1.0)
|
54
|
+
rubocop-performance (1.15.1)
|
55
|
+
rubocop (>= 1.7.0, < 2.0)
|
56
|
+
rubocop-ast (>= 0.4.0)
|
57
|
+
rubocop-rake (0.6.0)
|
58
|
+
rubocop (~> 1.0)
|
59
|
+
rubocop-rspec (2.16.0)
|
60
|
+
rubocop (~> 1.33)
|
61
|
+
ruby-progressbar (1.11.0)
|
62
|
+
thread_safe (0.3.6)
|
63
|
+
tzinfo (1.2.10)
|
64
|
+
thread_safe (~> 0.1)
|
65
|
+
unicode-display_width (2.3.0)
|
66
|
+
|
67
|
+
PLATFORMS
|
68
|
+
arm64-darwin-21
|
69
|
+
x86_64-linux
|
70
|
+
|
71
|
+
DEPENDENCIES
|
72
|
+
csvbuilder-core!
|
73
|
+
rake
|
74
|
+
rspec
|
75
|
+
rubocop
|
76
|
+
rubocop-performance
|
77
|
+
rubocop-rake
|
78
|
+
rubocop-rspec
|
79
|
+
|
80
|
+
BUNDLED WITH
|
81
|
+
2.3.22
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2022 Joel Azemar
|
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,37 @@
|
|
1
|
+
# Csvbuilder::Core
|
2
|
+
|
3
|
+
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/csvbuilder/core`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
10
|
+
|
11
|
+
$ bundle add csvbuilder-core
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
$ gem install csvbuilder-core
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Write usage instructions here
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
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.
|
24
|
+
|
25
|
+
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).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/csvbuilder-core. 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]/csvbuilder-core/blob/main/CODE_OF_CONDUCT.md).
|
30
|
+
|
31
|
+
## License
|
32
|
+
|
33
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
34
|
+
|
35
|
+
## Code of Conduct
|
36
|
+
|
37
|
+
Everyone interacting in the Csvbuilder::Core project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/csvbuilder-core/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,14 @@
|
|
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(:rubocop) do |task|
|
11
|
+
task.options = ["-A"]
|
12
|
+
end
|
13
|
+
|
14
|
+
task default: %i[spec rubocop]
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Runtime dependencies
|
6
|
+
gem "activesupport", "~> 5.2"
|
7
|
+
|
8
|
+
# Development dependencies
|
9
|
+
gem "rake"
|
10
|
+
gem "rspec"
|
11
|
+
gem "rubocop"
|
12
|
+
gem "rubocop-performance"
|
13
|
+
gem "rubocop-rake"
|
14
|
+
gem "rubocop-rspec"
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Runtime dependencies
|
6
|
+
gem "activesupport", "~> 6.1"
|
7
|
+
|
8
|
+
# Development dependencies
|
9
|
+
gem "rake"
|
10
|
+
gem "rspec"
|
11
|
+
gem "rubocop"
|
12
|
+
gem "rubocop-performance"
|
13
|
+
gem "rubocop-rake"
|
14
|
+
gem "rubocop-rspec"
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Runtime dependencies
|
6
|
+
gem "activesupport", "~> 7.0"
|
7
|
+
|
8
|
+
# Development dependencies
|
9
|
+
gem "rake"
|
10
|
+
gem "rspec"
|
11
|
+
gem "rubocop"
|
12
|
+
gem "rubocop-performance"
|
13
|
+
gem "rubocop-rake"
|
14
|
+
gem "rubocop-rspec"
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csvbuilder/core/concerns/model/attributes"
|
4
|
+
require "csvbuilder/core/concerns/proxy"
|
5
|
+
|
6
|
+
module Csvbuilder
|
7
|
+
module AttributesBase
|
8
|
+
extend ActiveSupport::Concern
|
9
|
+
include Model::Attributes
|
10
|
+
include Proxy
|
11
|
+
|
12
|
+
# @return [Hash] a map of `column_name => public_send(column_name)`
|
13
|
+
def attributes
|
14
|
+
attributes_from_method_names self.class.column_names
|
15
|
+
end
|
16
|
+
|
17
|
+
# Import:
|
18
|
+
# source_value - form source_row
|
19
|
+
# formatted_value - format_cell(source_value)
|
20
|
+
# value - calculated_value from a bunch of stuff
|
21
|
+
ATTRIBUTE_METHODS = {
|
22
|
+
original_attributes: :value, # a map of `column_name => original_attribute(column_name)`
|
23
|
+
formatted_attributes: :formatted_value, # a map of `column_name => format_cell(column_name, ...)`
|
24
|
+
source_attributes: :source_value # a map of `column_name => source (source_row[index_of_column_name] or row_model.public_send(column_name)) `
|
25
|
+
}.freeze
|
26
|
+
ATTRIBUTE_METHODS.each do |method_name, attribute_method|
|
27
|
+
define_method(method_name) do
|
28
|
+
column_names_to_attribute_value(self.class.column_names, attribute_method)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# @return [Object] the column's attribute
|
33
|
+
def original_attribute(column_name)
|
34
|
+
attribute_objects[column_name].try(:value)
|
35
|
+
end
|
36
|
+
|
37
|
+
def to_json(*_args)
|
38
|
+
attributes.to_json
|
39
|
+
end
|
40
|
+
|
41
|
+
def eql?(other)
|
42
|
+
other.try(:attributes) == attributes
|
43
|
+
end
|
44
|
+
|
45
|
+
def hash
|
46
|
+
attributes.hash
|
47
|
+
end
|
48
|
+
|
49
|
+
protected
|
50
|
+
|
51
|
+
def attributes_from_method_names(column_names)
|
52
|
+
array_to_block_hash(column_names) { |column_name| try(column_name) }
|
53
|
+
end
|
54
|
+
|
55
|
+
def column_names_to_attribute_value(column_names, attribute_method)
|
56
|
+
array_to_block_hash(column_names) { |column_name| attribute_objects[column_name].public_send(attribute_method) }
|
57
|
+
end
|
58
|
+
|
59
|
+
def array_to_block_hash(array, &block)
|
60
|
+
array.zip(array.map(&block)).to_h
|
61
|
+
end
|
62
|
+
|
63
|
+
class_methods do
|
64
|
+
# See {Model#column}
|
65
|
+
def column(column_name, options = {})
|
66
|
+
super
|
67
|
+
define_attribute_method(column_name)
|
68
|
+
end
|
69
|
+
|
70
|
+
# Define default attribute method for a column
|
71
|
+
# @param column_name [Symbol] the cell's column_name
|
72
|
+
def define_attribute_method(column_name, &block)
|
73
|
+
return if method_defined? column_name
|
74
|
+
|
75
|
+
define_proxy_method(column_name, &block)
|
76
|
+
end
|
77
|
+
|
78
|
+
def ensure_attribute_method
|
79
|
+
column_names.each { |*args| define_attribute_method(*args) }
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csvbuilder/core/internal/model/header"
|
4
|
+
|
5
|
+
module Csvbuilder
|
6
|
+
module Model
|
7
|
+
module Attributes
|
8
|
+
extend ActiveSupport::Concern
|
9
|
+
|
10
|
+
included do
|
11
|
+
mattr_accessor :_columns, instance_writer: false, instance_reader: false
|
12
|
+
end
|
13
|
+
|
14
|
+
def headers
|
15
|
+
self.class.headers(context)
|
16
|
+
end
|
17
|
+
|
18
|
+
class_methods do
|
19
|
+
# @return [Array<Symbol>] column names for the row model
|
20
|
+
def column_names
|
21
|
+
columns.keys
|
22
|
+
end
|
23
|
+
|
24
|
+
# @param [Symbol] column_name name of column to find index
|
25
|
+
# @return [Integer] index of the column_name
|
26
|
+
def index(column_name)
|
27
|
+
column_names.index column_name
|
28
|
+
end
|
29
|
+
|
30
|
+
# @param [Hash, OpenStruct] context name of column to check
|
31
|
+
# @return [Array] column headers for the row model
|
32
|
+
def headers(context = {})
|
33
|
+
column_names.map { |column_name| Header.new(column_name, self, context).value }
|
34
|
+
end
|
35
|
+
|
36
|
+
# Safe to override
|
37
|
+
#
|
38
|
+
# @return [String] formatted header
|
39
|
+
def format_header(column_name, _context)
|
40
|
+
column_name
|
41
|
+
end
|
42
|
+
|
43
|
+
# Safe to override. Method applied to each cell by default
|
44
|
+
#
|
45
|
+
# @param cell [String] the cell's string
|
46
|
+
# @param column_name [Symbol] the cell's column_name
|
47
|
+
def format_cell(cell, _column_name, _context)
|
48
|
+
cell
|
49
|
+
end
|
50
|
+
|
51
|
+
def columns
|
52
|
+
self._columns ||= {}
|
53
|
+
end
|
54
|
+
|
55
|
+
protected
|
56
|
+
|
57
|
+
# Adds column to the row model
|
58
|
+
#
|
59
|
+
# @param [Symbol] column_name name of column to add
|
60
|
+
# @param options [Hash]
|
61
|
+
#
|
62
|
+
# @option options [String] :header header for the column
|
63
|
+
def column(column_name, options = {})
|
64
|
+
self._columns = columns.merge(column_name.to_sym => options)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Csvbuilder
|
4
|
+
module Model
|
5
|
+
module Base
|
6
|
+
extend ActiveSupport::Concern
|
7
|
+
|
8
|
+
included do
|
9
|
+
attr_reader :context, :initialized_at
|
10
|
+
end
|
11
|
+
|
12
|
+
# @param [Hash] options
|
13
|
+
# @option options [Hash] :context extra data you want to work with the model
|
14
|
+
def initialize(options = {})
|
15
|
+
@initialized_at = DateTime.now
|
16
|
+
@context = OpenStruct.new(options[:context] || {})
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Csvbuilder
|
4
|
+
module Proxy
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
class_methods do
|
8
|
+
def proxy
|
9
|
+
@proxy ||= Module.new.tap { |mod| include mod }
|
10
|
+
end
|
11
|
+
|
12
|
+
def define_proxy_method(*args, &block)
|
13
|
+
proxy.send(:define_method, *args, &block)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csvbuilder/core/internal/concerns/column_shared"
|
4
|
+
|
5
|
+
module Csvbuilder
|
6
|
+
class AttributeBase
|
7
|
+
include ColumnShared
|
8
|
+
|
9
|
+
attr_reader :column_name, :row_model
|
10
|
+
|
11
|
+
def initialize(column_name, row_model)
|
12
|
+
@column_name = column_name
|
13
|
+
@row_model = row_model
|
14
|
+
end
|
15
|
+
|
16
|
+
def formatted_value
|
17
|
+
@formatted_value ||= row_model_class.format_cell(source_value, column_name, row_model.context)
|
18
|
+
end
|
19
|
+
|
20
|
+
def row_model_class
|
21
|
+
row_model.class
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csvbuilder/core/internal/concerns/column_shared"
|
4
|
+
|
5
|
+
module Csvbuilder
|
6
|
+
module Model
|
7
|
+
class Header
|
8
|
+
include ColumnShared
|
9
|
+
|
10
|
+
attr_reader :column_name, :row_model_class, :context
|
11
|
+
|
12
|
+
def initialize(column_name, row_model_class, context)
|
13
|
+
@column_name = column_name
|
14
|
+
@row_model_class = row_model_class
|
15
|
+
@context = OpenStruct.new(context)
|
16
|
+
end
|
17
|
+
|
18
|
+
def value
|
19
|
+
options[:header] || formatted_header
|
20
|
+
end
|
21
|
+
|
22
|
+
def formatted_header
|
23
|
+
row_model_class.format_header(column_name, context)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "csvbuilder/core/concerns/model/base"
|
4
|
+
require "csvbuilder/core/concerns/model/attributes"
|
5
|
+
|
6
|
+
module Csvbuilder
|
7
|
+
module Model
|
8
|
+
extend ActiveSupport::Concern
|
9
|
+
|
10
|
+
include Base
|
11
|
+
include Attributes
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "core/version"
|
4
|
+
|
5
|
+
require "csv"
|
6
|
+
require "ostruct"
|
7
|
+
|
8
|
+
require "active_support"
|
9
|
+
require "active_support/dependencies/autoload"
|
10
|
+
require "active_support/core_ext/object"
|
11
|
+
require "active_support/core_ext/string"
|
12
|
+
|
13
|
+
require "csvbuilder/core/public/model"
|
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: csvbuilder-core
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Joel Azemar
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 5.2.8.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 5.2.8.1
|
27
|
+
description: Help handle CSVs in a more efficient way
|
28
|
+
email:
|
29
|
+
- joel.azemar@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".rspec"
|
35
|
+
- ".rubocop.yml"
|
36
|
+
- ".rubocop_todo.yml"
|
37
|
+
- CHANGELOG.md
|
38
|
+
- CODE_OF_CONDUCT.md
|
39
|
+
- Gemfile
|
40
|
+
- Gemfile.lock
|
41
|
+
- LICENSE.txt
|
42
|
+
- README.md
|
43
|
+
- Rakefile
|
44
|
+
- gemfiles/Gemfile.5.2._gemfile
|
45
|
+
- gemfiles/Gemfile.6.1._gemfile
|
46
|
+
- gemfiles/Gemfile.7.0._gemfile
|
47
|
+
- lib/csvbuilder/core.rb
|
48
|
+
- lib/csvbuilder/core/concerns/attributes_base.rb
|
49
|
+
- lib/csvbuilder/core/concerns/model/attributes.rb
|
50
|
+
- lib/csvbuilder/core/concerns/model/base.rb
|
51
|
+
- lib/csvbuilder/core/concerns/proxy.rb
|
52
|
+
- lib/csvbuilder/core/internal/attribute_base.rb
|
53
|
+
- lib/csvbuilder/core/internal/concerns/column_shared.rb
|
54
|
+
- lib/csvbuilder/core/internal/model/header.rb
|
55
|
+
- lib/csvbuilder/core/public/model.rb
|
56
|
+
- lib/csvbuilder/core/version.rb
|
57
|
+
- sig/csvbuilder/core.rbs
|
58
|
+
homepage: https://github.com/joel/csvbuilder-core
|
59
|
+
licenses:
|
60
|
+
- MIT
|
61
|
+
metadata:
|
62
|
+
homepage_uri: https://github.com/joel/csvbuilder-core
|
63
|
+
source_code_uri: https://github.com/joel/csvbuilder-core
|
64
|
+
changelog_uri: https://github.com/joel/csvbuilder-core/blob/main/CHANGELOG.md
|
65
|
+
rubygems_mfa_required: 'true'
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 2.6.0
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
requirements: []
|
81
|
+
rubygems_version: 3.3.22
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: Csvbuilder Core contain the shared components of Csvbuilder
|
85
|
+
test_files: []
|