Sha256: aaf8bd8797dae24996729e9b8f7d4e34ad68c45896d4297815eef0b250abc768

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

require "coffee-rails"
require "sass-rails"
require "jquery-rails"
require 'haml'
require 'bcrypt'
require 'dynamic_form'
require 'kaminari'
require 'ransack'
require "globalize"

require 'nifty/utils'
require 'nifty/key_value_store'
require 'nifty/attachments'
require 'nifty/dialog'

module Shoppe
  class << self
    
    # The path to the root of the Shoppe applicatinio
    #
    # @return [String]
    def root
      File.expand_path('../../', __FILE__)
    end
    
    # Shoppe settings as configured in the database
    #
    # @return [Shoppe::Settings]
    def settings
      Thread.current[:shoppe_settings] ||= Shoppe::Settings.new(Shoppe::Setting.to_hash)
    end
    
    # Clears the settings from the thread cache so they will be taken
    # from the database on next access
    # 
    # @return [NilClass]
    def reset_settings
      Thread.current[:shoppe_settings] = nil
    end
    
    # Defines a new set of settings which should be configrable from the settings page 
    # in the Shoppe UI.
    def add_settings_group(group, fields = [])
      settings_groups[group]  ||= []
      settings_groups[group]    = settings_groups[group] | fields
    end
    
    # All settings groups which are available for configuration on the settings page.
    #
    # @return [Hash]
    def settings_groups
      @settings_groups ||= {}
    end
    
  end
  
end

# Start your engines.
require "shoppe/engine"

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
shoppe-1.0.8 lib/shoppe.rb
kylekthompson-shoppe-1.0.7 lib/shoppe.rb