Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/livereload.rb
Instance Method Summary collapse
Instance Method Details
#method_missing_with_livereload(id, *args, &block) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/livereload.rb', line 14 def method_missing_with_livereload id, *args, &block if id == :config Object.send(:instance_variable_get, '@livereload_config') else method_missing_without_livereload id, *args, &block end end |