Method: ActiveRestClient::Caching::ClassMethods#perform_caching
- Defined in:
- lib/active_rest_client/caching.rb
#perform_caching(value = nil) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/active_rest_client/caching.rb', line 6 def perform_caching(value = nil) if value.nil? if @perform_caching.nil? @@perform_caching else @perform_caching end else @perform_caching = value end end |