attr_combined_accessor 1.1.0 → 1.1.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 +4 -4
- data/README.md +2 -22
- metadata +62 -31
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93e4c2e656d8b2ae6b4187de113202d466c3a968cd27bf9d583345ddded2eaec
|
|
4
|
+
data.tar.gz: 7af17d320a6b9fed11378ea04ba06cfa78c53dacb01af20a908de75f0b9dc482
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc493ccf5e4a3058a0a94a434a417391f2d00f2201473eb900ae2918e740c044b7733b908a58abb257f244e14fc773b18306abd051a4e6d23e7bfd092f401ab4
|
|
7
|
+
data.tar.gz: 79490fbc980d6d3c2e1b7d7d4416aec9a34ffd410dca7f4de483051ccec4ff6defc864753e331b50811fda8ea182814b634261f5a52d31c25794d7c8f8f79f96
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# attr_combined_accessor [](https://github.com/nathankleyn/attr_combined_accessor/actions?query=workflow%3ATests) [](https://coveralls.io/github/nathankleyn/attr_combined_accessor?branch=master) [](https://rubygems.org/gems/attr_combined_accessor)
|
|
2
2
|
|
|
3
3
|
Combined reader/writer accessors in Ruby, ideal for chaining or DSLs.
|
|
4
4
|
|
|
@@ -52,24 +52,4 @@ my_amazing_class.foo # => 'notfoo!'
|
|
|
52
52
|
|
|
53
53
|
## License
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
Copyright (c) 2015 Nathan Kleyn
|
|
58
|
-
|
|
59
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
60
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
61
|
-
in the Software without restriction, including without limitation the rights
|
|
62
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
63
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
64
|
-
furnished to do so, subject to the following conditions:
|
|
65
|
-
|
|
66
|
-
The above copyright notice and this permission notice shall be included in
|
|
67
|
-
all copies or substantial portions of the Software.
|
|
68
|
-
|
|
69
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
70
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
71
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
72
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
73
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
74
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
75
|
-
THE SOFTWARE.
|
|
55
|
+
This project is licensed [via MIT license](LICENSE).
|
metadata
CHANGED
|
@@ -1,123 +1,155 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attr_combined_accessor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Kleyn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: filewatcher
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: '1.1'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.1.1
|
|
20
23
|
type: :development
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
27
|
- - "~>"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
29
|
+
version: '1.1'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.1.1
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
34
|
+
name: pry-byebug
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
30
36
|
requirements:
|
|
31
37
|
- - "~>"
|
|
32
38
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
39
|
+
version: '3.9'
|
|
34
40
|
- - ">="
|
|
35
41
|
- !ruby/object:Gem::Version
|
|
36
|
-
version:
|
|
42
|
+
version: 3.9.0
|
|
37
43
|
type: :development
|
|
38
44
|
prerelease: false
|
|
39
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
40
46
|
requirements:
|
|
41
47
|
- - "~>"
|
|
42
48
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: '
|
|
49
|
+
version: '3.9'
|
|
44
50
|
- - ">="
|
|
45
51
|
- !ruby/object:Gem::Version
|
|
46
|
-
version:
|
|
52
|
+
version: 3.9.0
|
|
47
53
|
- !ruby/object:Gem::Dependency
|
|
48
|
-
name:
|
|
54
|
+
name: rspec
|
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
|
50
56
|
requirements:
|
|
51
57
|
- - "~>"
|
|
52
58
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '3.
|
|
59
|
+
version: '3.10'
|
|
54
60
|
- - ">="
|
|
55
61
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 3.
|
|
62
|
+
version: 3.10.0
|
|
57
63
|
type: :development
|
|
58
64
|
prerelease: false
|
|
59
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
60
66
|
requirements:
|
|
61
67
|
- - "~>"
|
|
62
68
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: '3.
|
|
69
|
+
version: '3.10'
|
|
64
70
|
- - ">="
|
|
65
71
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: 3.
|
|
72
|
+
version: 3.10.0
|
|
67
73
|
- !ruby/object:Gem::Dependency
|
|
68
|
-
name:
|
|
74
|
+
name: rubocop
|
|
69
75
|
requirement: !ruby/object:Gem::Requirement
|
|
70
76
|
requirements:
|
|
71
77
|
- - "~>"
|
|
72
78
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: '
|
|
79
|
+
version: '1.4'
|
|
74
80
|
- - ">="
|
|
75
81
|
- !ruby/object:Gem::Version
|
|
76
|
-
version:
|
|
82
|
+
version: 1.4.2
|
|
77
83
|
type: :development
|
|
78
84
|
prerelease: false
|
|
79
85
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
86
|
requirements:
|
|
81
87
|
- - "~>"
|
|
82
88
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: '
|
|
89
|
+
version: '1.4'
|
|
84
90
|
- - ">="
|
|
85
91
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
92
|
+
version: 1.4.2
|
|
87
93
|
- !ruby/object:Gem::Dependency
|
|
88
|
-
name: rubocop
|
|
94
|
+
name: rubocop-rspec
|
|
89
95
|
requirement: !ruby/object:Gem::Requirement
|
|
90
96
|
requirements:
|
|
91
97
|
- - "~>"
|
|
92
98
|
- !ruby/object:Gem::Version
|
|
93
|
-
version: 0
|
|
99
|
+
version: '2.0'
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 2.0.0
|
|
94
103
|
type: :development
|
|
95
104
|
prerelease: false
|
|
96
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
97
106
|
requirements:
|
|
98
107
|
- - "~>"
|
|
99
108
|
- !ruby/object:Gem::Version
|
|
100
|
-
version: 0
|
|
109
|
+
version: '2.0'
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: 2.0.0
|
|
101
113
|
- !ruby/object:Gem::Dependency
|
|
102
|
-
name:
|
|
114
|
+
name: simplecov
|
|
103
115
|
requirement: !ruby/object:Gem::Requirement
|
|
104
116
|
requirements:
|
|
105
117
|
- - "~>"
|
|
106
118
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '
|
|
119
|
+
version: '0.20'
|
|
108
120
|
- - ">="
|
|
109
121
|
- !ruby/object:Gem::Version
|
|
110
|
-
version:
|
|
122
|
+
version: 0.20.0
|
|
111
123
|
type: :development
|
|
112
124
|
prerelease: false
|
|
113
125
|
version_requirements: !ruby/object:Gem::Requirement
|
|
114
126
|
requirements:
|
|
115
127
|
- - "~>"
|
|
116
128
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: '
|
|
129
|
+
version: '0.20'
|
|
118
130
|
- - ">="
|
|
119
131
|
- !ruby/object:Gem::Version
|
|
120
|
-
version:
|
|
132
|
+
version: 0.20.0
|
|
133
|
+
- !ruby/object:Gem::Dependency
|
|
134
|
+
name: simplecov-lcov
|
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - "~>"
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: '0.8'
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: 0.8.0
|
|
143
|
+
type: :development
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '0.8'
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 0.8.0
|
|
121
153
|
description: |
|
|
122
154
|
Combined reader/writer accessors in Ruby, ideal for chaining or DSLs. This
|
|
123
155
|
is useful for when you want to expose a DSL to an external file (think
|
|
@@ -143,15 +175,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
143
175
|
requirements:
|
|
144
176
|
- - ">="
|
|
145
177
|
- !ruby/object:Gem::Version
|
|
146
|
-
version:
|
|
178
|
+
version: 2.7.2
|
|
147
179
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
180
|
requirements:
|
|
149
181
|
- - ">="
|
|
150
182
|
- !ruby/object:Gem::Version
|
|
151
183
|
version: '0'
|
|
152
184
|
requirements: []
|
|
153
|
-
|
|
154
|
-
rubygems_version: 2.7.6
|
|
185
|
+
rubygems_version: 3.1.4
|
|
155
186
|
signing_key:
|
|
156
187
|
specification_version: 4
|
|
157
188
|
summary: Combined reader/writer accessors in Ruby, ideal for chaining or DSLs.
|