Class: RenderAsync::Configuration
- Inherits:
-
Object
- Object
- RenderAsync::Configuration
- Defined in:
- lib/render_async/configuration.rb
Instance Attribute Summary collapse
-
#jquery ⇒ Object
Returns the value of attribute jquery.
-
#nonces ⇒ Object
Returns the value of attribute nonces.
-
#replace_container ⇒ Object
Returns the value of attribute replace_container.
-
#turbo ⇒ Object
Returns the value of attribute turbo.
-
#turbolinks ⇒ Object
Returns the value of attribute turbolinks.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 11 |
# File 'lib/render_async/configuration.rb', line 5 def initialize @jquery = false @turbolinks = false @turbo = false @replace_container = true @nonces = false end |
Instance Attribute Details
#jquery ⇒ Object
Returns the value of attribute jquery.
3 4 5 |
# File 'lib/render_async/configuration.rb', line 3 def jquery @jquery end |
#nonces ⇒ Object
Returns the value of attribute nonces.
3 4 5 |
# File 'lib/render_async/configuration.rb', line 3 def nonces @nonces end |
#replace_container ⇒ Object
Returns the value of attribute replace_container.
3 4 5 |
# File 'lib/render_async/configuration.rb', line 3 def replace_container @replace_container end |
#turbo ⇒ Object
Returns the value of attribute turbo.
3 4 5 |
# File 'lib/render_async/configuration.rb', line 3 def turbo @turbo end |
#turbolinks ⇒ Object
Returns the value of attribute turbolinks.
3 4 5 |
# File 'lib/render_async/configuration.rb', line 3 def turbolinks @turbolinks end |