* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
6 lines
289 B
Ruby
6 lines
289 B
Ruby
if AppConfig.heroku?
|
|
Rails.application.config.secret_token = AppConfig.secret_token
|
|
elsif !File.exists?( Rails.root.join('config', 'initializers', 'secret_token.rb'))
|
|
`bundle exec rake generate:secret_token`
|
|
require Rails.root.join('config', 'initializers', 'secret_token.rb')
|
|
end
|