This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-07 03:42:33 -08:00
|
|
|
Rabl.configure do |config|
|
2017-04-05 09:51:15 -07:00
|
|
|
config.json_engine = Oj
|
2016-10-22 10:38:47 -07:00
|
|
|
config.cache_all_output = false
|
2017-03-05 17:25:41 -08:00
|
|
|
config.cache_sources = Rails.env.production?
|
2016-03-07 03:42:33 -08:00
|
|
|
config.include_json_root = false
|
2016-03-26 05:42:10 -07:00
|
|
|
config.view_paths = [Rails.root.join('app/views')]
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|