alba 3.5.0 → 3.6.0

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -39
  4. data/lib/alba/association.rb +4 -1
  5. data/lib/alba/conditional_attribute.rb +11 -14
  6. data/lib/alba/layout.rb +8 -6
  7. data/lib/alba/railtie.rb +2 -2
  8. data/lib/alba/resource.rb +59 -15
  9. data/lib/alba/typed_attribute.rb +2 -0
  10. data/lib/alba/version.rb +1 -1
  11. data/lib/alba.rb +51 -32
  12. metadata +4 -52
  13. data/.codeclimate.yml +0 -12
  14. data/.editorconfig +0 -10
  15. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -26
  16. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  17. data/.github/dependabot.yml +0 -12
  18. data/.github/workflows/codeql-analysis.yml +0 -70
  19. data/.github/workflows/lint.yml +0 -17
  20. data/.github/workflows/main.yml +0 -41
  21. data/.gitignore +0 -11
  22. data/.rubocop.yml +0 -156
  23. data/.yardopts +0 -4
  24. data/CODE_OF_CONDUCT.md +0 -132
  25. data/CONTRIBUTING.md +0 -30
  26. data/Gemfile +0 -39
  27. data/HACKING.md +0 -42
  28. data/Rakefile +0 -17
  29. data/SECURITY.md +0 -12
  30. data/alba.gemspec +0 -33
  31. data/benchmark/Gemfile +0 -26
  32. data/benchmark/README.md +0 -137
  33. data/benchmark/collection.rb +0 -297
  34. data/benchmark/prep.rb +0 -56
  35. data/benchmark/single_resource.rb +0 -300
  36. data/bin/console +0 -15
  37. data/bin/setup +0 -8
  38. data/codecov.yml +0 -8
  39. data/docs/migrate_from_active_model_serializers.md +0 -359
  40. data/docs/migrate_from_jbuilder.md +0 -237
  41. data/docs/rails.md +0 -56
  42. data/gemfiles/without_active_support.gemfile +0 -19
  43. data/gemfiles/without_oj.gemfile +0 -19
  44. data/logo/alba-card.png +0 -0
  45. data/logo/alba-sign.png +0 -0
  46. data/logo/alba-typography.png +0 -0
data/.editorconfig DELETED
@@ -1,10 +0,0 @@
1
- [*]
2
- end_of_line = lf
3
- insert_final_newline = true
4
- charset = utf-8
5
- trim_trailing_whitespace = true
6
- indent_style = space
7
- indent_size = 2
8
-
9
- [*.{md,markdown}]
10
- trim_trailing_whitespace = false
@@ -1,26 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
- title: ''
5
- labels: bug
6
- assignees: ''
7
-
8
- ---
9
-
10
- ## Describe the bug
11
- A clear and concise description of what the bug is.
12
-
13
- ## To Reproduce
14
- Steps to reproduce the behavior:
15
-
16
- ## Expected behavior
17
- A clear and concise description of what you expected to happen.
18
-
19
- ## Actual behavior
20
- A clear and concise description of what actually happened.
21
-
22
- ## Environment
23
- - Ruby version:
24
-
25
- ## Additional context
26
- Add any other context about the problem here.
@@ -1,20 +0,0 @@
1
- ---
2
- name: Feature request
3
- about: Suggest an idea for this project
4
- title: ''
5
- labels: enhancement
6
- assignees: ''
7
-
8
- ---
9
-
10
- ## Is your feature request related to a problem? Please describe.
11
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
-
13
- ## Describe the solution you'd like
14
- A clear and concise description of what you want to happen.
15
-
16
- ## Describe alternatives you've considered
17
- A clear and concise description of any alternative solutions or features you've considered.
18
-
19
- ## Additional context
20
- Add any other context or screenshots about the feature request here.
@@ -1,12 +0,0 @@
1
- version: 2
2
- updates:
3
- - package-ecosystem: github-actions
4
- directory: "/"
5
- schedule:
6
- interval: daily
7
- - package-ecosystem: bundler
8
- directory: "/"
9
- schedule:
10
- interval: daily
11
- time: "20:00"
12
- open-pull-requests-limit: 10
@@ -1,70 +0,0 @@
1
- # For most projects, this workflow file will not need changing; you simply need
2
- # to commit it to your repository.
3
- #
4
- # You may wish to alter this file to override the set of languages analyzed,
5
- # or to provide custom queries or build logic.
6
- #
7
- # ******** NOTE ********
8
- # We have attempted to detect the languages in your repository. Please check
9
- # the `language` matrix defined below to confirm you have the correct set of
10
- # supported CodeQL languages.
11
- #
12
- name: "CodeQL"
13
-
14
- on:
15
- push:
16
- branches: [ main ]
17
- pull_request:
18
- # The branches below must be a subset of the branches above
19
- branches: [ main ]
20
- schedule:
21
- - cron: '21 4 * * 5'
22
-
23
- jobs:
24
- analyze:
25
- name: Analyze
26
- runs-on: ubuntu-latest
27
- permissions:
28
- actions: read
29
- contents: read
30
- security-events: write
31
-
32
- strategy:
33
- fail-fast: false
34
- matrix:
35
- language: [ 'ruby' ]
36
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37
- # Learn more about CodeQL language support at https://git.io/codeql-language-support
38
-
39
- steps:
40
- - name: Checkout repository
41
- uses: actions/checkout@v4
42
-
43
- # Initializes the CodeQL tools for scanning.
44
- - name: Initialize CodeQL
45
- uses: github/codeql-action/init@v3
46
- with:
47
- languages: ${{ matrix.language }}
48
- # If you wish to specify custom queries, you can do so here or in a config file.
49
- # By default, queries listed here will override any specified in a config file.
50
- # Prefix the list here with "+" to use these queries and those in the config file.
51
- # queries: ./path/to/local/query, your-org/your-repo/queries@main
52
-
53
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
- # If this step fails, then you should remove it and run the build manually (see below)
55
- - name: Autobuild
56
- uses: github/codeql-action/autobuild@v3
57
-
58
- # ℹ️ Command-line programs to run using the OS shell.
59
- # 📚 https://git.io/JvXDl
60
-
61
- # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62
- # and modify them (or add more) to build your code if your project
63
- # uses a compiled language
64
-
65
- #- run: |
66
- # make bootstrap
67
- # make release
68
-
69
- - name: Perform CodeQL Analysis
70
- uses: github/codeql-action/analyze@v3
@@ -1,17 +0,0 @@
1
- name: Lint
2
-
3
- on: [push,pull_request]
4
-
5
- jobs:
6
- build:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: actions/checkout@v4
10
- - name: Set up Ruby
11
- uses: ruby/setup-ruby@v1
12
- with:
13
- ruby-version: 3.0 # The lowest version Alba supports
14
- bundler-cache: true
15
- - name: Run RuboCop
16
- run: |
17
- bundle exec rubocop
@@ -1,41 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
- pull_request:
8
-
9
- jobs:
10
- build:
11
- strategy:
12
- fail-fast: false
13
- matrix:
14
- os: [ubuntu-latest, windows-latest, macos-latest]
15
- ruby: ['3.0', 3.1, 3.2, 3.3, 3.4, head, jruby, truffleruby]
16
- gemfile: [all, without_active_support, without_oj]
17
- exclude:
18
- - os: windows-latest
19
- ruby: 3.4
20
- - os: windows-latest
21
- ruby: jruby
22
- - os: windows-latest
23
- ruby: truffleruby
24
- runs-on: ${{ matrix.os }}
25
- env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
26
- BUNDLE_GEMFILE: ${{ (matrix.gemfile == 'without_active_support' && 'gemfiles/without_active_support.gemfile') || (matrix.gemfile == 'without_oj' && 'gemfiles/without_oj.gemfile') || null }}
27
- steps:
28
- - uses: actions/checkout@v4
29
- - name: Set up Ruby
30
- uses: ruby/setup-ruby@v1
31
- with:
32
- ruby-version: ${{ matrix.ruby }}
33
- bundler-cache: true
34
- - name: Run the default task
35
- run: |
36
- bundle exec rake
37
- - name: CodeCov
38
- uses: codecov/codecov-action@v5
39
- with:
40
- files: ./coverage/coverage.xml
41
- token: ${{ secrets.CODECOV_TOKEN }}
data/.gitignore DELETED
@@ -1,11 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- Gemfile.lock
11
- /gemfiles/*.lock
data/.rubocop.yml DELETED
@@ -1,156 +0,0 @@
1
- ---
2
-
3
- inherit_gem:
4
- rubocop-gem_dev: 'config/rubocop.yml'
5
-
6
- inherit_mode:
7
- merge:
8
- - Exclude
9
-
10
- require:
11
- - rubocop-md
12
- - rubocop-minitest
13
- - rubocop-performance
14
- - rubocop-rake
15
-
16
- AllCops:
17
- Exclude:
18
- - 'alba.gemspec'
19
- - 'benchmark/**/*.rb'
20
- - 'docs/**/*'
21
- - 'script/**/*.rb'
22
- NewCops: enable
23
- EnabledByDefault: true
24
- TargetRubyVersion: 3.0
25
-
26
- Bundler/GemComment:
27
- Exclude:
28
- - 'benchmark/**/*'
29
-
30
- # Items in Gemfile is dev dependencies and we don't have to specify versions.
31
- Bundler/GemVersion:
32
- Enabled: false
33
-
34
- # Test class is a class, but not really
35
- Layout/ClassStructure:
36
- Exclude:
37
- - 'test/**/*'
38
-
39
- # LineLength 80 comes from restrictions in good old days.
40
- Layout/LineLength:
41
- Max: 160
42
-
43
- # We'd like to write something like:
44
- # assert_equal(
45
- # expected,
46
- # actual
47
- # )
48
- Layout/RedundantLineBreak:
49
- Exclude:
50
- - 'test/**/*'
51
-
52
- Layout/SpaceInsideHashLiteralBraces:
53
- EnforcedStyle: no_space
54
-
55
- Layout/MultilineAssignmentLayout:
56
- EnforcedStyle: same_line
57
-
58
- Lint/ConstantResolution:
59
- Enabled: false
60
-
61
- # In test code we don't care about the metrics!
62
- Metrics:
63
- Exclude:
64
- - 'test/**/*.rb'
65
-
66
- # `Resource` module is a core module and its length tends to be long...
67
- # `Alba` main module is also long because it has all parts of configuration
68
- Metrics/ClassLength:
69
- Exclude:
70
- - 'lib/alba/resource.rb'
71
- - 'lib/alba.rb'
72
- - 'test/**/*.rb' # Neec to specify this
73
-
74
- Metrics/ModuleLength:
75
- Exclude:
76
- - 'lib/alba/resource.rb'
77
- - 'lib/alba.rb'
78
-
79
- # Resource class includes DSLs, which tend to accept long list of parameters
80
- Metrics/ParameterLists:
81
- Max: 7
82
- Exclude:
83
- - 'test/**/*.rb'
84
-
85
- # Putting extra empty line is not valuable in test
86
- # We prefer shorter test code
87
- Minitest/EmptyLineBeforeAssertionMethods:
88
- Enabled: false
89
-
90
- # By nature of that test
91
- Minitest/NoTestCases:
92
- Exclude:
93
- - 'test/dependencies/test_dependencies.rb'
94
-
95
- # We need to use `OpenStruct` to wrap object in ConfitionalAttribute
96
- Performance/OpenStruct:
97
- Exclude:
98
- - 'lib/alba/conditional_attribute.rb'
99
-
100
- # We need to eval resource code to test errors on resource classes
101
- Security/Eval:
102
- Exclude:
103
- - 'test/**/*.rb'
104
-
105
- Style/ConstantVisibility:
106
- Exclude:
107
- - 'lib/alba/version.rb'
108
- - 'test/**/*.rb'
109
-
110
- # Copyright is in README
111
- Style/Copyright:
112
- Enabled: false
113
-
114
- # I know what I do :)
115
- Style/DisableCopsWithinSourceCodeDirective:
116
- Enabled: false
117
-
118
- # Test files doesn't need to have documentation
119
- Style/Documentation:
120
- Exclude:
121
- - 'test/**/*'
122
-
123
- # In README it's so obvious
124
- Style/DocumentationMethod:
125
- Exclude:
126
- - 'README.md'
127
-
128
- # I don't want to think about error class in example code
129
- Style/ImplicitRuntimeError:
130
- Exclude:
131
- - 'README.md'
132
-
133
- # We use it, don't we?
134
- Style/InlineComment:
135
- Enabled: false
136
-
137
- Style/MethodCallWithArgsParentheses:
138
- AllowedMethods: ['require', 'require_relative', 'include', 'extend', 'puts', 'p', 'warn', 'raise', 'send', 'public_send', 'alias_method']
139
- Exclude:
140
- # There are so many calls like `attributes` and `register_type` without parenthese and that's absolutely fine
141
- - 'test/**/*.rb'
142
- - 'README.md'
143
-
144
- # There are so many cases we just want `if` expression!
145
- Style/MissingElse:
146
- EnforcedStyle: case
147
-
148
- # We need to use `OpenStruct` to wrap object in ConfitionalAttribute
149
- Style/OpenStructUse:
150
- Exclude:
151
- - 'lib/alba/conditional_attribute.rb'
152
-
153
- # It's example code, please forgive us
154
- Style/OptionalBooleanParameter:
155
- Exclude:
156
- - 'README.md'
data/.yardopts DELETED
@@ -1,4 +0,0 @@
1
- --no-private
2
- --exclude lib/alba/version.rb
3
- --embed-mixin ClassMethods
4
- --embed-mixin InstanceMethods
data/CODE_OF_CONDUCT.md DELETED
@@ -1,132 +0,0 @@
1
-
2
- # Contributor Covenant Code of Conduct
3
-
4
- ## Our Pledge
5
-
6
- We as members, contributors, and leaders pledge to make participation in our
7
- community a harassment-free experience for everyone, regardless of age, body
8
- size, visible or invisible disability, ethnicity, sex characteristics, gender
9
- identity and expression, level of experience, education, socio-economic status,
10
- nationality, personal appearance, race, caste, color, religion, or sexual
11
- identity and orientation.
12
-
13
- We pledge to act and interact in ways that contribute to an open, welcoming,
14
- diverse, inclusive, and healthy community.
15
-
16
- ## Our Standards
17
-
18
- Examples of behavior that contributes to a positive environment for our
19
- community include:
20
-
21
- * Demonstrating empathy and kindness toward other people
22
- * Being respectful of differing opinions, viewpoints, and experiences
23
- * Giving and gracefully accepting constructive feedback
24
- * Accepting responsibility and apologizing to those affected by our mistakes,
25
- and learning from the experience
26
- * Focusing on what is best not just for us as individuals, but for the overall
27
- community
28
-
29
- Examples of unacceptable behavior include:
30
-
31
- * The use of sexualized language or imagery, and sexual attention or advances of
32
- any kind
33
- * Trolling, insulting or derogatory comments, and personal or political attacks
34
- * Public or private harassment
35
- * Publishing others' private information, such as a physical or email address,
36
- without their explicit permission
37
- * Other conduct which could reasonably be considered inappropriate in a
38
- professional setting
39
-
40
- ## Enforcement Responsibilities
41
-
42
- Community leaders are responsible for clarifying and enforcing our standards of
43
- acceptable behavior and will take appropriate and fair corrective action in
44
- response to any behavior that they deem inappropriate, threatening, offensive,
45
- or harmful.
46
-
47
- Community leaders have the right and responsibility to remove, edit, or reject
48
- comments, commits, code, wiki edits, issues, and other contributions that are
49
- not aligned to this Code of Conduct, and will communicate reasons for moderation
50
- decisions when appropriate.
51
-
52
- ## Scope
53
-
54
- This Code of Conduct applies within all community spaces, and also applies when
55
- an individual is officially representing the community in public spaces.
56
- Examples of representing our community include using an official e-mail address,
57
- posting via an official social media account, or acting as an appointed
58
- representative at an online or offline event.
59
-
60
- ## Enforcement
61
-
62
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
- reported to the community leaders responsible for enforcement at masafumi.o1988@gmail.com .
64
- All complaints will be reviewed and investigated promptly and fairly.
65
-
66
- All community leaders are obligated to respect the privacy and security of the
67
- reporter of any incident.
68
-
69
- ## Enforcement Guidelines
70
-
71
- Community leaders will follow these Community Impact Guidelines in determining
72
- the consequences for any action they deem in violation of this Code of Conduct:
73
-
74
- ### 1. Correction
75
-
76
- **Community Impact**: Use of inappropriate language or other behavior deemed
77
- unprofessional or unwelcome in the community.
78
-
79
- **Consequence**: A private, written warning from community leaders, providing
80
- clarity around the nature of the violation and an explanation of why the
81
- behavior was inappropriate. A public apology may be requested.
82
-
83
- ### 2. Warning
84
-
85
- **Community Impact**: A violation through a single incident or series of
86
- actions.
87
-
88
- **Consequence**: A warning with consequences for continued behavior. No
89
- interaction with the people involved, including unsolicited interaction with
90
- those enforcing the Code of Conduct, for a specified period of time. This
91
- includes avoiding interactions in community spaces as well as external channels
92
- like social media. Violating these terms may lead to a temporary or permanent
93
- ban.
94
-
95
- ### 3. Temporary Ban
96
-
97
- **Community Impact**: A serious violation of community standards, including
98
- sustained inappropriate behavior.
99
-
100
- **Consequence**: A temporary ban from any sort of interaction or public
101
- communication with the community for a specified period of time. No public or
102
- private interaction with the people involved, including unsolicited interaction
103
- with those enforcing the Code of Conduct, is allowed during this period.
104
- Violating these terms may lead to a permanent ban.
105
-
106
- ### 4. Permanent Ban
107
-
108
- **Community Impact**: Demonstrating a pattern of violation of community
109
- standards, including sustained inappropriate behavior, harassment of an
110
- individual, or aggression toward or disparagement of classes of individuals.
111
-
112
- **Consequence**: A permanent ban from any sort of public interaction within the
113
- community.
114
-
115
- ## Attribution
116
-
117
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
- version 2.1, available at
119
- [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120
-
121
- Community Impact Guidelines were inspired by
122
- [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123
-
124
- For answers to common questions about this code of conduct, see the FAQ at
125
- [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126
- [https://www.contributor-covenant.org/translations][translations].
127
-
128
- [homepage]: https://www.contributor-covenant.org
129
- [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130
- [Mozilla CoC]: https://github.com/mozilla/diversity
131
- [FAQ]: https://www.contributor-covenant.org/faq
132
- [translations]: https://www.contributor-covenant.org/translations
data/CONTRIBUTING.md DELETED
@@ -1,30 +0,0 @@
1
- # CONTRIBUTORS GUIDELINE
2
-
3
- ## Welcome
4
-
5
- Welcome to Alba, and thank you for being interested in contributing to Alba. This document describes how to contribute to Alba.
6
-
7
- ## Code of Conduct
8
-
9
- We have the [code of conduct](https://github.com/okuramasafumi/alba/blob/master/CODE_OF_CONDUCT.md) that all contributors are expected to adhere for Alba to be a safe and welcoming space.
10
-
11
- ## Bugs and Issues
12
-
13
- If you find any bugs or issues, please submit an issue on [GitHub](https://github.com/okuramasafumi/alba/issues). Please follow the issue template as much as possible so that maintainers can find and fix it quickly.
14
-
15
- ## Feature Request
16
-
17
- If you have any feature that you think Alba should have, please submit a feature request on [GitHub](https://github.com/okuramasafumi/alba/issues).
18
-
19
- ## Pull Request
20
-
21
- You're more than welcomed to submit a Pull Request! You are expected to follow these rules before submitting:
22
-
23
- * You must split your Pull Request into multiple ones if you solve more than one problem
24
- * You must write tests if you implement a feature or fix a bug
25
- * You should provide reason(s) behind your change unless it's so simple
26
-
27
- ## Documents
28
-
29
- * [code of conduct](https://github.com/okuramasafumi/alba/blob/master/CODE_OF_CONDUCT.md) for all contributors
30
- * [hacking document](https://github.com/okuramasafumi/alba/blob/main/HACKING.md) for those who want to know the internal of Alba
data/Gemfile DELETED
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- # Specify your gem's dependencies in alba.gemspec
6
- gemspec
7
-
8
- gem 'activesupport', require: false # For backend
9
- gem 'dry-inflector', require: false # For inflection
10
- gem 'ffaker', require: false # For testing
11
- gem 'minitest', '~> 5.14' # For test
12
- gem 'railties', require: false # For Rails integration testing
13
- gem 'rake', '~> 13.0' # For test and automation
14
- gem 'rubocop', '~> 1.69.0', require: false # For lint
15
- gem 'rubocop-gem_dev', '>= 0.3.0', require: false # For lint
16
- gem 'rubocop-md', '~> 1.0', require: false # For lint
17
- gem 'rubocop-minitest', '~> 0.36.0', require: false # For lint
18
- gem 'rubocop-performance', '~> 1.23.0', require: false # For lint
19
- gem 'rubocop-rake', '~> 0.6.0', require: false # For lint
20
- gem 'simplecov', '~> 0.22.0', require: false # For test coverage
21
- gem 'simplecov-cobertura', require: false # For test coverage
22
- # gem 'steep', require: false # For language server and typing
23
- # gem 'typeprof', require: false # For language server and typing
24
- gem 'yard', require: false # For documentation
25
-
26
- # FIXME: There is an upstream JRuby 9.4.9.0 issue with `psych` and the latest
27
- # version of `jar-dependencies`. The issue will be resolved with the release of
28
- # 9.4.10.0. Then, we can remove this `jar-dependencies` dependency lock.
29
- #
30
- # For more information, see: https://github.com/jruby/jruby/issues/8488
31
- #
32
- if defined?(JRUBY_VERSION) && Gem::Version.new(JRUBY_VERSION) < Gem::Version.new('9.4.10.0')
33
- gem 'jar-dependencies', '< 0.5' # Fix
34
- end
35
-
36
- platforms :ruby do
37
- gem 'oj', '~> 3.11', require: false # For backend
38
- gem 'ruby-prof', require: false # For performance profiling
39
- end
data/HACKING.md DELETED
@@ -1,42 +0,0 @@
1
- # Hacking document
2
-
3
- This document is intended to provide detailed information about the internal design and implementation of Alba. You are recommended to read through it if you want to hack Alba.
4
-
5
- ## Design
6
-
7
- The design of Alba is simple. `Alba::Resource` module is the only interface end users use by `include`ing it. Other classes and modules are referenced by `Alba::Resource`.
8
-
9
- When a class `include`s `Alba::Resource` module it defines `ClassMethods` such as `attributes` and `InstanceMethods` such as `serialize`. Instance methods work with information collected by class methods.
10
-
11
- ## Methods
12
-
13
- The main methods users directly use are listed below.
14
-
15
- Class methods (DSL):
16
-
17
- * `attribute` for block style attribute
18
- * `attributes` for symbol style attribute
19
- * `association` and its aliases such as `one` for association
20
- * `nested` for nested attribute
21
-
22
- Instance methods:
23
-
24
- * `serializable_hash` and `to_h` for hash from target object
25
- * `serialize` and `to_json` for serialized JSON string
26
-
27
- Other methods are rather trivial. They'll be added to this list when it turned out it's important enough.
28
-
29
- ## Implementation
30
-
31
- In `Alba::Resource` module there are some things to note.
32
-
33
- `@object` is an object for serialization. It's either a singular object or a collection.
34
-
35
- Attribute object can be either `Symbol`, `Proc`, `Alba::Association` or `Alba::TypedAttribute`.
36
-
37
- * `Symbol` attributes come from `attributes` method and are sent to `__send__` as method name
38
- * `Proc` attributes come from `attribute` method and are `instance_exec`uted
39
- * `Alba::Association` attributes come from `association` method and `to_h` method on the object is called
40
- * `Alba::TypedAttribute` attributes come when users specify `type` option and `value` method on the object is called
41
-
42
- When users provide `if` option, the attribute object becomes an `Array`. It contains two element, attribute itself and condition.
data/Rakefile DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bundler/gem_tasks'
4
- require 'rake/testtask'
5
-
6
- if ENV['BUNDLE_GEMFILE'] == File.expand_path('Gemfile') || ENV['BUNDLE_GEMFILE'].empty? || ENV['BUNDLE_GEMFILE'].nil?
7
- ENV['BUNDLE_GEMFILE'] = File.expand_path('Gemfile')
8
- end
9
-
10
- Rake::TestTask.new(:test) do |t|
11
- t.libs << 'test'
12
- t.libs << 'lib'
13
- file_list = ENV['BUNDLE_GEMFILE'] == File.expand_path('Gemfile') ? FileList['test/**/*_test.rb'] : FileList['test/dependencies/test_dependencies.rb']
14
- t.test_files = file_list
15
- end
16
-
17
- task default: :test
data/SECURITY.md DELETED
@@ -1,12 +0,0 @@
1
- # Security Policy
2
-
3
- ## Supported Versions
4
-
5
- | Version | Supported |
6
- | ------- | ------------------ |
7
- | 1.x.y | :white_check_mark: |
8
- | < 1.0 | :x: |
9
-
10
- ## Reporting a Vulnerability
11
-
12
- If you find a vulnerability of Alba, please contact me (OKURA Masafumi) via [email](masafumi.o1988@gmail.com). I'll report back within a few days.