Sha256: f9f050539705c04acf43941a45dec435c87c3a45ed3fbd80b4d0a6878dd68a66

Contents?: true

Size: 526 Bytes

Versions: 10

Compression:

Stored size: 526 Bytes

Contents

require 'rails'
require 'active_support/core_ext/class/attribute'

module Imaginable
  
  require 'imaginable/railtie'
  
  # The upload-server hostname
  mattr_accessor :upload_server
  #@@upload_server = 'http://127.0.0.1:3001'
  
  # The scale-server hostname
  mattr_accessor :scale_server
  #@@scale_server = 'http://127.0.0.1:3333'
  
  # Default way to setup Imaginable. Run rails generate imaginable:install to create
  # a fresh initializer with all configuration values.
  def self.setup
    yield self
  end
  
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
imaginable-0.1.6 lib/imaginable.rb
imaginable-0.1.5 lib/imaginable.rb
imaginable-0.1.4 lib/imaginable.rb
imaginable-0.1.3 lib/imaginable.rb
imaginable-0.1.2 lib/imaginable.rb
imaginable-0.1.1 lib/imaginable.rb
imaginable-0.1.0 lib/imaginable.rb
imaginable-0.0.5 lib/imaginable.rb
imaginable-0.0.4 lib/imaginable.rb
imaginable-0.0.3 lib/imaginable.rb