Sha256: c9a978b5311e045169835d4b881f165abc6617de037310597a323850125761aa

Contents?: true

Size: 288 Bytes

Versions: 7

Compression:

Stored size: 288 Bytes

Contents

require 'singleton'

module CanTango
  class Configuration
    class Engines
      class UserAc < Engine
        def modes
          @modes ||= [:no_cache]
        end

        private

        def valid_mode_names
          [:cache, :no_cache]
        end
      end
    end
  end
end



Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cantango-0.9.4.7 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4.6 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4.5 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4.3 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4.2 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4.1 lib/cantango/configuration/engines/user_ac.rb
cantango-0.9.4 lib/cantango/configuration/engines/user_ac.rb