attribute_extras 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/main.yml +35 -0
- data/.rubocop.yml +26 -1
- data/CHANGELOG.md +11 -2
- data/CODE_OF_CONDUCT.md +76 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +46 -45
- data/LICENSE +1 -1
- data/README.md +6 -6
- data/attribute_extras.gemspec +21 -13
- data/lib/attribute_extras/version.rb +1 -1
- metadata +28 -23
- data/.travis.yml +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b20d50f3986dfb10a5e3c8d5afcb9c7b6f3acd3c4ed8ec77e7f2f0bdd4cb6b41
|
4
|
+
data.tar.gz: 7f05f0982053f65ed2bc96993a2e50d99c7f53257e8d941e5a5adae735cd90dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52c7e755eab89794cb6e8fd424ad390534a02c26fd4082a896fe93c42f6c0b107b2f493b253b09d29df0bcb71c7ab5afa4cdf7c44cc12129928322b11e586d53
|
7
|
+
data.tar.gz: c17ab44ea5736d792e6288f14d9bf014ec32889fabbdefee0b503ff9e29ce1f7cd0dba95cfa452f397ff3014056687a540388163e913b725c7a0c842e5f6b115
|
@@ -0,0 +1,35 @@
|
|
1
|
+
name: Main
|
2
|
+
on:
|
3
|
+
- push
|
4
|
+
- pull_request_target
|
5
|
+
jobs:
|
6
|
+
ci:
|
7
|
+
name: CI
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
env:
|
10
|
+
CI: true
|
11
|
+
steps:
|
12
|
+
- run: sudo apt-get install libsqlite3-dev
|
13
|
+
- uses: actions/checkout@master
|
14
|
+
- uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: 3.0
|
17
|
+
bundler-cache: true
|
18
|
+
- name: Lint and test
|
19
|
+
run: |
|
20
|
+
bundle exec rubocop --parallel
|
21
|
+
bundle exec rake test
|
22
|
+
automerge:
|
23
|
+
name: AutoMerge
|
24
|
+
needs: ci
|
25
|
+
runs-on: ubuntu-latest
|
26
|
+
if: github.event_name == 'pull_request_target' && (github.actor == github.repository_owner || github.actor == 'dependabot[bot]')
|
27
|
+
steps:
|
28
|
+
- uses: actions/github-script@v3
|
29
|
+
with:
|
30
|
+
script: |
|
31
|
+
github.pulls.merge({
|
32
|
+
owner: context.payload.repository.owner.login,
|
33
|
+
repo: context.payload.repository.name,
|
34
|
+
pull_number: context.payload.pull_request.number
|
35
|
+
})
|
data/.rubocop.yml
CHANGED
@@ -1,9 +1,34 @@
|
|
1
1
|
AllCops:
|
2
2
|
DisplayCopNames: true
|
3
3
|
DisplayStyleGuide: true
|
4
|
-
TargetRubyVersion: 2.
|
4
|
+
TargetRubyVersion: 2.7
|
5
5
|
Exclude:
|
6
6
|
- 'vendor/**/*'
|
7
|
+
- 'yard/**/*'
|
8
|
+
|
9
|
+
Gemspec/RequiredRubyVersion:
|
10
|
+
Enabled: false
|
11
|
+
|
12
|
+
Layout/LineLength:
|
13
|
+
Max: 80
|
14
|
+
|
15
|
+
Lint/AmbiguousBlockAssociation:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
Lint/MissingSuper:
|
19
|
+
Enabled: false
|
20
|
+
|
21
|
+
Naming/RescuedExceptionsVariableName:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Style/Documentation:
|
25
|
+
Enabled: false
|
26
|
+
|
27
|
+
Style/FormatString:
|
28
|
+
EnforcedStyle: percent
|
29
|
+
|
30
|
+
Style/FormatStringToken:
|
31
|
+
Enabled: false
|
7
32
|
|
8
33
|
Style/PerlBackrefs:
|
9
34
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -6,13 +6,22 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.0.1] - 2021-11-17
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
|
13
|
+
- Require MFA for releasing.
|
14
|
+
|
9
15
|
## [1.0.0] - 2018-12-05
|
16
|
+
|
10
17
|
### Changed
|
18
|
+
|
11
19
|
- Instead of overwriting the writer, adds a `before_validation` callback so that the extras can be composed.
|
12
20
|
- From `set_*_attributes` to just `*_attributes`, .e.g, `set_nullified_attributes` became `nullify_attributes`.
|
13
21
|
|
14
22
|
### Removed
|
23
|
+
|
15
24
|
- All of the introspection methods.
|
16
25
|
|
17
|
-
[Unreleased]: https://github.com/
|
18
|
-
[1.0.0]: https://github.com/
|
26
|
+
[Unreleased]: https://github.com/kddnewton/attribute_extras/compare/v1.0.0...HEAD
|
27
|
+
[1.0.0]: https://github.com/kddnewton/attribute_extras/compare/ccda61...v1.0.0
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
- Using welcoming and inclusive language
|
18
|
+
- Being respectful of differing viewpoints and experiences
|
19
|
+
- Gracefully accepting constructive criticism
|
20
|
+
- Focusing on what is best for the community
|
21
|
+
- Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
- Public or private harassment
|
29
|
+
- Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at kddnewton@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
72
|
+
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
74
|
+
|
75
|
+
For answers to common questions about this code of conduct, see
|
76
|
+
https://www.contributor-covenant.org/faq
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,69 +1,70 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
attribute_extras (1.0.
|
4
|
+
attribute_extras (1.0.1)
|
5
5
|
activerecord (> 3)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (
|
11
|
-
activesupport (=
|
12
|
-
activerecord (
|
13
|
-
activemodel (=
|
14
|
-
activesupport (=
|
15
|
-
|
16
|
-
activesupport (5.2.2)
|
10
|
+
activemodel (7.0.0.alpha2)
|
11
|
+
activesupport (= 7.0.0.alpha2)
|
12
|
+
activerecord (7.0.0.alpha2)
|
13
|
+
activemodel (= 7.0.0.alpha2)
|
14
|
+
activesupport (= 7.0.0.alpha2)
|
15
|
+
activesupport (7.0.0.alpha2)
|
17
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
-
i18n (>=
|
19
|
-
minitest (
|
20
|
-
tzinfo (~>
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
i18n (1.1.1)
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
minitest (>= 5.1)
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
ast (2.4.2)
|
21
|
+
concurrent-ruby (1.1.9)
|
22
|
+
docile (1.3.5)
|
23
|
+
i18n (1.8.10)
|
26
24
|
concurrent-ruby (~> 1.0)
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
parser (2.5.3.0)
|
32
|
-
ast (~> 2.4.0)
|
33
|
-
powerpack (0.1.2)
|
25
|
+
minitest (5.14.4)
|
26
|
+
parallel (1.21.0)
|
27
|
+
parser (3.0.2.0)
|
28
|
+
ast (~> 2.4.1)
|
34
29
|
rainbow (3.0.0)
|
35
|
-
rake (
|
36
|
-
|
37
|
-
|
30
|
+
rake (13.0.6)
|
31
|
+
regexp_parser (2.1.1)
|
32
|
+
rexml (3.2.5)
|
33
|
+
rubocop (1.23.0)
|
38
34
|
parallel (~> 1.10)
|
39
|
-
parser (>=
|
40
|
-
powerpack (~> 0.1)
|
35
|
+
parser (>= 3.0.0.0)
|
41
36
|
rainbow (>= 2.2.2, < 4.0)
|
37
|
+
regexp_parser (>= 1.8, < 3.0)
|
38
|
+
rexml
|
39
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
42
40
|
ruby-progressbar (~> 1.7)
|
43
|
-
unicode-display_width (
|
44
|
-
|
45
|
-
|
41
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
42
|
+
rubocop-ast (1.13.0)
|
43
|
+
parser (>= 3.0.1.1)
|
44
|
+
ruby-progressbar (1.11.0)
|
45
|
+
simplecov (0.21.2)
|
46
46
|
docile (~> 1.1)
|
47
|
-
|
48
|
-
|
49
|
-
simplecov-html (0.
|
50
|
-
|
51
|
-
|
52
|
-
tzinfo (
|
53
|
-
|
54
|
-
unicode-display_width (1.
|
47
|
+
simplecov-html (~> 0.11)
|
48
|
+
simplecov_json_formatter (~> 0.1)
|
49
|
+
simplecov-html (0.12.3)
|
50
|
+
simplecov_json_formatter (0.1.2)
|
51
|
+
sqlite3 (1.4.2)
|
52
|
+
tzinfo (2.0.4)
|
53
|
+
concurrent-ruby (~> 1.0)
|
54
|
+
unicode-display_width (2.1.0)
|
55
55
|
|
56
56
|
PLATFORMS
|
57
57
|
ruby
|
58
58
|
|
59
59
|
DEPENDENCIES
|
60
|
+
activerecord (>= 6.0.0.beta1)
|
60
61
|
attribute_extras!
|
61
|
-
bundler (~>
|
62
|
+
bundler (~> 2.0)
|
62
63
|
minitest (~> 5.0)
|
63
|
-
rake (~>
|
64
|
-
rubocop (~>
|
65
|
-
simplecov (~> 0.
|
66
|
-
sqlite3 (~> 1.
|
64
|
+
rake (~> 13.0)
|
65
|
+
rubocop (~> 1.12)
|
66
|
+
simplecov (~> 0.17)
|
67
|
+
sqlite3 (~> 1.4)
|
67
68
|
|
68
69
|
BUNDLED WITH
|
69
|
-
|
70
|
+
2.2.3
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# AttributeExtras
|
2
2
|
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://github.com/kddnewton/attribute_extras/workflows/Main/badge.svg)](https://github.com/kddnewton/attribute_extras/actions)
|
4
4
|
[![Gem](https://img.shields.io/gem/v/attribute_extras.svg)](https://rubygems.org/gems/attribute_extras)
|
5
5
|
|
6
|
-
Use this gem for automatic behavior on attributes performed before validation. You can use the predefined
|
6
|
+
Use this gem for automatic behavior on attributes performed before validation. You can use the predefined extras or define your own.
|
7
7
|
|
8
8
|
## Installation
|
9
9
|
|
@@ -76,12 +76,12 @@ person.truncate_attributes
|
|
76
76
|
person.name # => 'a' * limit
|
77
77
|
```
|
78
78
|
|
79
|
-
### `AttributeExtras::
|
79
|
+
### `AttributeExtras::define_extra`
|
80
80
|
|
81
|
-
You can define your own
|
81
|
+
You can define your own extras by using the `define_extra` method on the `AttributeExtras` module. `define_extra` takes a name for the extra and a block which itself accepts three arguments (the record being modified, the attribute being modified, and the value of the attribute). The block should return the modified value. An example would be:
|
82
82
|
|
83
83
|
```ruby
|
84
|
-
AttributeExtras.
|
84
|
+
AttributeExtras.define_extra :double_attributes do |_record, _attribute, value|
|
85
85
|
value * 2
|
86
86
|
end
|
87
87
|
|
@@ -105,7 +105,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
105
105
|
|
106
106
|
## Contributing
|
107
107
|
|
108
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
108
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kddnewton/attribute_extras.
|
109
109
|
|
110
110
|
## License
|
111
111
|
|
data/attribute_extras.gemspec
CHANGED
@@ -1,22 +1,30 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require 'attribute_extras/version'
|
3
|
+
require_relative 'lib/attribute_extras/version'
|
6
4
|
|
7
|
-
|
5
|
+
version = AttributeExtras::VERSION
|
6
|
+
repository = 'https://github.com/kddnewton/attribute_extras'
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
8
9
|
spec.name = 'attribute_extras'
|
9
|
-
spec.version =
|
10
|
-
spec.authors = ['Kevin
|
11
|
-
spec.email = ['
|
10
|
+
spec.version = version
|
11
|
+
spec.authors = ['Kevin Newton']
|
12
|
+
spec.email = ['kddnewton@gmail.com']
|
12
13
|
|
13
14
|
spec.summary = 'Extra macros for auto attribute manipulation.'
|
14
15
|
spec.description = <<~DOC
|
15
16
|
Builds macros to automatically manipulate your models' attributes.
|
16
17
|
DOC
|
17
|
-
spec.homepage =
|
18
|
+
spec.homepage = repository
|
18
19
|
spec.license = 'MIT'
|
19
20
|
|
21
|
+
spec.metadata = {
|
22
|
+
'bug_tracker_uri' => "#{repository}/issues",
|
23
|
+
'changelog_uri' => "#{repository}/blob/v#{version}/CHANGELOG.md",
|
24
|
+
'source_code_uri' => repository,
|
25
|
+
'rubygems_mfa_required' => 'true'
|
26
|
+
}
|
27
|
+
|
20
28
|
spec.files =
|
21
29
|
Dir.chdir(__dir__) do
|
22
30
|
`git ls-files -z`.split("\x0").reject do |f|
|
@@ -30,10 +38,10 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
30
38
|
|
31
39
|
spec.add_dependency 'activerecord', '> 3'
|
32
40
|
|
33
|
-
spec.add_development_dependency 'bundler', '~>
|
41
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
34
42
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
35
|
-
spec.add_development_dependency 'rake', '~>
|
36
|
-
spec.add_development_dependency 'rubocop', '~>
|
37
|
-
spec.add_development_dependency 'simplecov', '~> 0.
|
38
|
-
spec.add_development_dependency 'sqlite3', '~> 1.
|
43
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
44
|
+
spec.add_development_dependency 'rubocop', '~> 1.12'
|
45
|
+
spec.add_development_dependency 'simplecov', '~> 0.17'
|
46
|
+
spec.add_development_dependency 'sqlite3', '~> 1.4'
|
39
47
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attribute_extras
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Kevin
|
8
|
-
autorequire:
|
7
|
+
- Kevin Newton
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '2.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '2.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,69 +58,71 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '13.0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '13.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rubocop
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '1.12'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '1.12'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: simplecov
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0.
|
89
|
+
version: '0.17'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0.
|
96
|
+
version: '0.17'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: sqlite3
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '1.
|
103
|
+
version: '1.4'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '1.
|
110
|
+
version: '1.4'
|
111
111
|
description: 'Builds macros to automatically manipulate your models'' attributes.
|
112
112
|
|
113
|
-
'
|
113
|
+
'
|
114
114
|
email:
|
115
|
-
-
|
115
|
+
- kddnewton@gmail.com
|
116
116
|
executables: []
|
117
117
|
extensions: []
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
|
+
- ".github/dependabot.yml"
|
121
|
+
- ".github/workflows/main.yml"
|
120
122
|
- ".gitignore"
|
121
123
|
- ".rubocop.yml"
|
122
|
-
- ".travis.yml"
|
123
124
|
- CHANGELOG.md
|
125
|
+
- CODE_OF_CONDUCT.md
|
124
126
|
- Gemfile
|
125
127
|
- Gemfile.lock
|
126
128
|
- LICENSE
|
@@ -131,11 +133,15 @@ files:
|
|
131
133
|
- bin/setup
|
132
134
|
- lib/attribute_extras.rb
|
133
135
|
- lib/attribute_extras/version.rb
|
134
|
-
homepage: https://github.com/
|
136
|
+
homepage: https://github.com/kddnewton/attribute_extras
|
135
137
|
licenses:
|
136
138
|
- MIT
|
137
|
-
metadata:
|
138
|
-
|
139
|
+
metadata:
|
140
|
+
bug_tracker_uri: https://github.com/kddnewton/attribute_extras/issues
|
141
|
+
changelog_uri: https://github.com/kddnewton/attribute_extras/blob/v1.0.1/CHANGELOG.md
|
142
|
+
source_code_uri: https://github.com/kddnewton/attribute_extras
|
143
|
+
rubygems_mfa_required: 'true'
|
144
|
+
post_install_message:
|
139
145
|
rdoc_options: []
|
140
146
|
require_paths:
|
141
147
|
- lib
|
@@ -150,9 +156,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
150
156
|
- !ruby/object:Gem::Version
|
151
157
|
version: '0'
|
152
158
|
requirements: []
|
153
|
-
|
154
|
-
|
155
|
-
signing_key:
|
159
|
+
rubygems_version: 3.2.3
|
160
|
+
signing_key:
|
156
161
|
specification_version: 4
|
157
162
|
summary: Extra macros for auto attribute manipulation.
|
158
163
|
test_files: []
|
data/.travis.yml
DELETED