Module: Jbuilder::Schema::IgnoreSchemaMeta
- Defined in:
- lib/jbuilder/schema.rb
Instance Method Summary
collapse
-
#array!(*args, schema: nil, **options, &block) ⇒ Object
-
#extract!(*args, schema: nil, **options, &block) ⇒ Object
-
#method_missing(*args, schema: nil, **options, &block) ⇒ Object
standard:disable Style/MissingRespondToMissing.
-
#set!(*args, schema: nil, **options, &block) ⇒ Object
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(*args, schema: nil, **options, &block) ⇒ Object
standard:disable Style/MissingRespondToMissing
13
14
15
|
# File 'lib/jbuilder/schema.rb', line 13
def method_missing(*args, schema: nil, **options, &block) super(*args, **options, &block)
end
|
Instance Method Details
#array!(*args, schema: nil, **options, &block) ⇒ Object
21
22
23
|
# File 'lib/jbuilder/schema.rb', line 21
def array!(*args, schema: nil, **options, &block)
super(*args, **options, &block)
end
|
25
26
27
|
# File 'lib/jbuilder/schema.rb', line 25
def (*args, schema: nil, **options, &block)
super(*args, **options, &block)
end
|
#set!(*args, schema: nil, **options, &block) ⇒ Object
17
18
19
|
# File 'lib/jbuilder/schema.rb', line 17
def set!(*args, schema: nil, **options, &block)
super(*args, **options, &block)
end
|