-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClass.html
276 lines (168 loc) · 8.11 KB
/
Class.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
---
title: Class
layout: default
---
<div class="main">
<div class="banner">
<span>Ruby on Rails 8.0.0</span><br />
<div class="type">Class</div>
<h1>
Class
<span class="parent"><
<a href="Object.html">Object</a>
</span>
</h1>
<ul class="files">
<li><a href="../files/activesupport/lib/active_support/core_ext/class/attribute_rb.html">activesupport/lib/active_support/core_ext/class/attribute.rb</a></li>
<li><a href="../files/activesupport/lib/active_support/core_ext/class/subclasses_rb.html">activesupport/lib/active_support/core_ext/class/subclasses.rb</a></li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<h2 id="methods">Methods</h2>
<ul>
<li>
<a href="#method-i-class_attribute">class_attribute</a>
</li>
<li>
<a href="#method-i-descendants">descendants</a>
</li>
</ul>
<!-- Methods -->
<h2 id="instance-public-methods">Instance Public methods</h2>
<div class="method">
<h3 id="method-i-class_attribute">
class_attribute(*attrs, instance_accessor: true, instance_reader: instance_accessor, instance_writer: instance_accessor, instance_predicate: true, default: nil)
</h3>
<div class="description">
<p>Declare a class-level attribute whose value is inheritable by subclasses. Subclasses can change their own value and it will not impact parent class.</p>
<h4 id="method-i-class_attribute-label-Options">Options</h4>
<ul><li>
<p><code>:instance_reader</code> - Sets the instance reader method (defaults to true).</p>
</li><li>
<p><code>:instance_writer</code> - Sets the instance writer method (defaults to true).</p>
</li><li>
<p><code>:instance_accessor</code> - Sets both instance methods (defaults to true).</p>
</li><li>
<p><code>:instance_predicate</code> - Sets a predicate method (defaults to true).</p>
</li><li>
<p><code>:default</code> - Sets a default value for the attribute (defaults to nil).</p>
</li></ul>
<h4 id="method-i-class_attribute-label-Examples">Examples</h4>
<pre><code>class Base
class_attribute :setting
end
class Subclass < Base
end
Base.setting = true
Subclass.setting # => true
Subclass.setting = false
Subclass.setting # => false
Base.setting # => true
</code></pre>
<p>In the above case as long as Subclass does not assign a value to setting by performing <code>Subclass.setting = <em>something</em></code>, <code>Subclass.setting</code> would read value assigned to parent class. Once Subclass assigns a value then the value assigned by Subclass would be returned.</p>
<p>This matches normal Ruby method inheritance: think of writing an attribute on a subclass as overriding the reader method. However, you need to be aware when using <code>class_attribute</code> with mutable structures as <code>Array</code> or <code>Hash</code>. In such cases, you don’t want to do changes in place. Instead use setters:</p>
<pre><code>Base.setting = []
Base.setting # => []
Subclass.setting # => []
# Appending in child changes both parent and child because it is the same object:
Subclass.setting << :foo
Base.setting # => [:foo]
Subclass.setting # => [:foo]
# Use setters to not propagate changes:
Base.setting = []
Subclass.setting += [:foo]
Base.setting # => []
Subclass.setting # => [:foo]
</code></pre>
<p>For convenience, an instance predicate method is defined as well. To skip it, pass <code>instance_predicate: false</code>.</p>
<pre><code>Subclass.setting? # => false
</code></pre>
<p>Instances may overwrite the class value in the same way:</p>
<pre><code>Base.setting = true
object = Base.new
object.setting # => true
object.setting = false
object.setting # => false
Base.setting # => true
</code></pre>
<p>To opt out of the instance reader method, pass <code>instance_reader: false</code>.</p>
<pre><code>object.setting # => NoMethodError
object.setting? # => NoMethodError
</code></pre>
<p>To opt out of the instance writer method, pass <code>instance_writer: false</code>.</p>
<pre><code>object.setting = false # => NoMethodError
</code></pre>
<p>To opt out of both instance methods, pass <code>instance_accessor: false</code>.</p>
<p>To set a default value for the attribute, pass <code>default:</code>, like so:</p>
<pre><code>class_attribute :settings, default: {}
</code></pre>
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File activesupport/lib/active_support/core_ext/class/attribute.rb, line 86
def class_attribute(*attrs, instance_accessor: true,
instance_reader: instance_accessor, instance_writer: instance_accessor, instance_predicate: true, default: nil)
class_methods, methods = [], []
attrs.each do |name|
unless name.is_a?(Symbol) || name.is_a?(String)
raise TypeError, "#{name.inspect} is not a symbol nor a string"
end
name = name.to_sym
::ActiveSupport::ClassAttribute.redefine(self, name, default)
unless singleton_class?
methods << <<~RUBY if instance_reader
silence_redefinition_of_method def #{name}
defined?(@#{name}) ? @#{name} : self.class.#{name}
end
RUBY
end
methods << <<~RUBY if instance_writer
silence_redefinition_of_method(:#{name}=)
attr_writer :#{name}
RUBY
if instance_predicate
class_methods << "silence_redefinition_of_method def #{name}?; !!self.#{name}; end"
if instance_reader
methods << "silence_redefinition_of_method def #{name}?; !!self.#{name}; end"
end
end
end
location = caller_locations(1, 1).first
class_eval(["class << self", *class_methods, "end", *methods].join(";").tr("\n", ";"), location.path, location.lineno)
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/activesupport/lib/active_support/core_ext/class/attribute.rb#L86" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
<div class="method">
<h3 id="method-i-descendants">
descendants()
</h3>
<div class="description">
<p>Returns an array with all classes that are < than its receiver.</p>
<pre><code>class C; end
C.descendants # => []
class B < C; end
C.descendants # => [B]
class A < B; end
C.descendants # => [B, A]
class D < C; end
C.descendants # => [B, A, D]
</code></pre>
</div>
<details class="method__source">
<summary>
<span class="label">📝 Source code</span>
</summary>
<pre><code class="ruby"># File activesupport/lib/active_support/core_ext/class/subclasses.rb, line 19
def descendants
subclasses.concat(subclasses.flat_map(&:descendants))
end</code></pre>
<a href="https://github.com/rails/rails/blob/dd8f7185faeca6ee968a6e9367f6d8601a83b8db/activesupport/lib/active_support/core_ext/class/subclasses.rb#L19" target="_blank" class="github_url">🔎 See on GitHub</a>
</details>
</div>
</div>
</div>
</div>