alba 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +2 -2
- data/CHANGELOG.md +6 -0
- data/CODE_OF_CONDUCT.md +104 -46
- data/README.md +49 -41
- data/docs/migrate_from_jbuilder.md +1 -1
- data/lib/alba/resource.rb +5 -6
- data/lib/alba/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f7b454e9de7d518fe1287a46d1b14a0c8cb8d13e3b10fcce3eee8a9e3df05c9
|
4
|
+
data.tar.gz: ab670cee9399503a4480f74b4533a40eb4fd67048a0b9c93b9f706712ecc1a8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 758481e888e55ae7a1ac87d61060cdbe76f3effea46e59b0906a125c4d804ef54f337aee014cba3df35fbd819601ad66c84eaafb820fd1a1144842a48969125a
|
7
|
+
data.tar.gz: 5960c6958060c3169152c4634aaecd34af1a0920b7cb6461c9652e690e6fed661275efea1a6988513be0e7142eec6e13fe3a6f61658af68a70fc25ad04eaf430
|
data/.github/workflows/main.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: CI
|
2
2
|
|
3
3
|
on: [push,pull_request]
|
4
4
|
|
@@ -8,7 +8,7 @@ jobs:
|
|
8
8
|
fail-fast: false
|
9
9
|
matrix:
|
10
10
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
11
|
-
ruby: ['3.0', 3.1, 3.2, head, jruby
|
11
|
+
ruby: ['3.0', 3.1, 3.2, head, truffleruby] # TODO: Add jruby after the error is resolved
|
12
12
|
gemfile: [all, without_active_support, without_oj]
|
13
13
|
exclude:
|
14
14
|
- os: windows-latest
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [3.0.2] 2023-12-05
|
10
|
+
|
11
|
+
### Fixed
|
12
|
+
|
13
|
+
- Fixed warning when `location` option is given to `render json:` in Rails [#348](https://github.com/okuramasafumi/alba/pull/348)
|
14
|
+
|
9
15
|
## [3.0.1] 2023-10-13
|
10
16
|
|
11
17
|
### Fixed
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -1,74 +1,132 @@
|
|
1
|
+
|
1
2
|
# Contributor Covenant Code of Conduct
|
2
3
|
|
3
4
|
## Our Pledge
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
nationality, personal appearance, race, religion, or sexual
|
10
|
-
orientation.
|
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.
|
11
15
|
|
12
16
|
## Our Standards
|
13
17
|
|
14
|
-
Examples of behavior that contributes to
|
15
|
-
include:
|
18
|
+
Examples of behavior that contributes to a positive environment for our
|
19
|
+
community include:
|
16
20
|
|
17
|
-
*
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
19
|
-
*
|
20
|
-
*
|
21
|
-
|
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
|
22
28
|
|
23
|
-
Examples of unacceptable behavior
|
29
|
+
Examples of unacceptable behavior include:
|
24
30
|
|
25
|
-
* The use of sexualized language or imagery and
|
26
|
-
|
27
|
-
* Trolling, insulting
|
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
|
28
34
|
* Public or private harassment
|
29
|
-
* Publishing others' private information, such as a physical or
|
30
|
-
|
35
|
+
* Publishing others' private information, such as a physical or email address,
|
36
|
+
without their explicit permission
|
31
37
|
* Other conduct which could reasonably be considered inappropriate in a
|
32
38
|
professional setting
|
33
39
|
|
34
|
-
##
|
40
|
+
## Enforcement Responsibilities
|
35
41
|
|
36
|
-
|
37
|
-
behavior and
|
38
|
-
response to any
|
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.
|
39
46
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
threatening, offensive, or harmful.
|
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.
|
45
51
|
|
46
52
|
## Scope
|
47
53
|
|
48
|
-
This Code of Conduct applies
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
representative at an online or offline event.
|
53
|
-
further defined and clarified by project maintainers.
|
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.
|
54
59
|
|
55
60
|
## Enforcement
|
56
61
|
|
57
62
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported
|
59
|
-
complaints will be reviewed and investigated and
|
60
|
-
|
61
|
-
|
62
|
-
|
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
|
63
84
|
|
64
|
-
|
65
|
-
|
66
|
-
|
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.
|
67
114
|
|
68
115
|
## Attribution
|
69
116
|
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
71
|
-
available at
|
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].
|
72
127
|
|
73
|
-
[homepage]: https://contributor-covenant.org
|
74
|
-
[
|
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/README.md
CHANGED
@@ -6,6 +6,7 @@
|
|
6
6
|
[![Maintainability](https://api.codeclimate.com/v1/badges/fdab4cc0de0b9addcfe8/maintainability)](https://codeclimate.com/github/okuramasafumi/alba/maintainability)
|
7
7
|
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/okuramasafumi/alba)
|
8
8
|
![GitHub](https://img.shields.io/github/license/okuramasafumi/alba)
|
9
|
+
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md)
|
9
10
|
|
10
11
|
# Alba
|
11
12
|
|
@@ -14,9 +15,11 @@ Alba is a JSON serializer for Ruby, JRuby, and TruffleRuby.
|
|
14
15
|
## IMPORTANT NOTICE
|
15
16
|
|
16
17
|
Both version `3.0.0` and `2.4.2` contain important bug fix.
|
17
|
-
However, version `3.0.0` has some bugs (see https://github.com/okuramasafumi/alba/issues/342).
|
18
|
+
~~However, version `3.0.0` has some bugs (see https://github.com/okuramasafumi/alba/issues/342).
|
18
19
|
Until they get fixed, it's highly recommended to upgrade to version `2.4.2`.
|
19
|
-
Dependabot and similar tools might create an automated Pull Request to upgrade to `3.0.0`, so it might be required to upgrade to `2.4.2` manually
|
20
|
+
Dependabot and similar tools might create an automated Pull Request to upgrade to `3.0.0`, so it might be required to upgrade to `2.4.2` manually.~~
|
21
|
+
Version `3.0.1` has been released so Ruby 3 users should upgrade to `3.0.1`.
|
22
|
+
For Ruby 2 users, it's highly recommended to upgrade to `2.4.2`.
|
20
23
|
Sorry for the inconvenience.
|
21
24
|
|
22
25
|
## TL;DR
|
@@ -289,72 +292,77 @@ class UserResource
|
|
289
292
|
end
|
290
293
|
```
|
291
294
|
|
292
|
-
####
|
295
|
+
#### Methods conflict
|
293
296
|
|
294
|
-
|
297
|
+
Consider following code:
|
295
298
|
|
296
299
|
```ruby
|
297
|
-
class
|
298
|
-
|
299
|
-
|
300
|
-
def initialize(id, name, email)
|
301
|
-
@id = id
|
302
|
-
@name = name
|
303
|
-
@email = email
|
304
|
-
end
|
305
|
-
|
306
|
-
def name_with_email
|
307
|
-
'dummy!'
|
300
|
+
class Foo
|
301
|
+
def bar
|
302
|
+
'This is Foo'
|
308
303
|
end
|
309
304
|
end
|
310
305
|
|
311
|
-
class
|
306
|
+
class FooResource
|
312
307
|
include Alba::Resource
|
313
308
|
|
314
|
-
|
315
|
-
|
316
|
-
attributes :id, :name, :name_with_email
|
309
|
+
attributes :bar
|
317
310
|
|
318
|
-
|
319
|
-
|
320
|
-
def name_with_email(user)
|
321
|
-
"#{user.name}: #{user.email}"
|
311
|
+
def bar
|
312
|
+
'This is FooResource'
|
322
313
|
end
|
323
314
|
end
|
324
315
|
|
325
|
-
|
326
|
-
UserResource.new(user).serialize
|
327
|
-
# => '{"user":{"id":1,"name":"Masafumi OKURA","name_with_email":"dummy!"}}'
|
316
|
+
FooResource.new(Foo.new).serialize
|
328
317
|
```
|
329
318
|
|
330
|
-
|
319
|
+
By default, Alba create the JSON as `'{"bar":"This is FooResource"}'`. This means Alba calls a method on a Resource class and doesn't call a method on a target object. This rule is applied to methods that are explicitly defined on Resource class, so methods that Resource class inherits from `Object` class such as `format` are ignored.
|
331
320
|
|
332
321
|
```ruby
|
333
|
-
|
322
|
+
class Foo
|
323
|
+
def format
|
324
|
+
'This is Foo'
|
325
|
+
end
|
326
|
+
end
|
334
327
|
|
335
|
-
class
|
328
|
+
class FooResource
|
336
329
|
include Alba::Resource
|
337
330
|
|
338
|
-
|
331
|
+
attributes :bar
|
339
332
|
|
340
|
-
|
333
|
+
# Here, `format` method is available
|
334
|
+
end
|
341
335
|
|
342
|
-
|
336
|
+
FooResource.new(Foo.new).serialize
|
337
|
+
# => '{"bar":"This is Foo"}'
|
338
|
+
```
|
343
339
|
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
340
|
+
If you'd like Alba to call methods on a target object, use `prefer_object_method!` like below.
|
341
|
+
|
342
|
+
```ruby
|
343
|
+
class Foo
|
344
|
+
def bar
|
345
|
+
'This is Foo'
|
348
346
|
end
|
349
347
|
end
|
350
348
|
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
349
|
+
class FooResource
|
350
|
+
include Alba::Resource
|
351
|
+
|
352
|
+
prefer_object_method! # <- important
|
355
353
|
|
356
|
-
|
354
|
+
attributes :bar
|
355
|
+
|
356
|
+
# This is not called
|
357
|
+
def bar
|
358
|
+
'This is FooResource'
|
359
|
+
end
|
360
|
+
end
|
357
361
|
|
362
|
+
FooResource.new(Foo.new).serialize
|
363
|
+
# => '{"bar":"This is Foo"}'
|
364
|
+
```
|
365
|
+
|
358
366
|
#### Params
|
359
367
|
|
360
368
|
You can pass a Hash to the resource for internal use. It can be used as "flags" to control attribute content.
|
data/lib/alba/resource.rb
CHANGED
@@ -96,12 +96,11 @@ module Alba
|
|
96
96
|
private
|
97
97
|
|
98
98
|
def _to_json(root_key, meta, options)
|
99
|
-
options.
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
message = "You passed #{names.join(', ')} options but ignored. Please refer to the document: https://github.com/okuramasafumi/alba/blob/main/docs/rails.md"
|
99
|
+
confusing_options = options.keys.select { |k| k.to_sym == :only || k.to_sym == :except }
|
100
|
+
unless confusing_options.empty?
|
101
|
+
confusing_options.sort!
|
102
|
+
confusing_options.map! { |s| "\"#{s}\"" }
|
103
|
+
message = "You passed #{confusing_options.join(' and ')} options but ignored. Please refer to the document: https://github.com/okuramasafumi/alba/blob/main/docs/rails.md"
|
105
104
|
Kernel.warn(message)
|
106
105
|
end
|
107
106
|
serialize(root_key: root_key, meta: meta)
|
data/lib/alba/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OKURA Masafumi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Alba is the fastest JSON serializer for Ruby. It focuses on performance,
|
14
14
|
flexibility and usability.
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
|
-
rubygems_version: 3.4.
|
97
|
+
rubygems_version: 3.4.22
|
98
98
|
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Alba is the fastest JSON serializer for Ruby.
|