Top Level Namespace

Defined Under Namespace

Modules: Glass Classes: CreateGlassTimelineItems

Instance Method Summary collapse

Instance Method Details

#configObject

Your configuration details here:



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/generators/glass/install/templates/initializer.rb', line 11

Glass.setup do |config|

  #  modify this to change the name of your glass app
  ## config.application_name = "SomeGlassApp"


  #  modify this to change the application version of your glass app
  ## config.application_version = "0.0.1"


  #  if you don't want to use a yaml file to load your api
  #  keys, then you can use these config vars to force load
  #  your keys from enviroment variables, or whatever method 
  #  you might choose.
  # 
  ## config.client_id = ENV["GOOGLE_CLIENT_ID"]
  ## config.client_secret = ENV["GOOGLE_CLIENT_SECRET"]


  ## manually override your glass views path here.
  config.glass_template_path = "app/views/glass"
end