Sha256: 0606b470a9955d147438a070e060bd6bc16fe948170c3247b4eede4cc9e1d7bc

Contents?: true

Size: 728 Bytes

Versions: 2

Compression:

Stored size: 728 Bytes

Contents

motion_require './config.rb'
MotionPrime::Config.configure do |config|
  if MotionPrime.env.test?
    config.model.store_type = :memory
  else
    config.model.store_type = :file
  end
  config.font.name = "Ubuntu"
  config.colors do |colors|
    colors.base = 0x424242
    colors.error = 0xef471f
  end
  config.api_client do |api|
    api.base = "http://example.com"
    api.client_id = ""
    api.client_secret = ""
    api.signature_secret = ""
    api.sign_request = false
    api.auth_path = '/oauth/token'
    api.api_namespace = '/api'
    api.allow_queue = false
  end
  config.prime.cell_section.mixins = [Prime::CellSectionMixin]
  config.logger.level = :info
  config.logger.dealloc_items = ['screen', 'tab_bar']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
motion-prime-0.7.2 motion-prime/config/base.rb
motion-prime-0.7.1 motion-prime/config/base.rb