10
11
12
13
14
15
16
17
18
19
|
# File 'lib/generators/solid_cache/install/install_generator.rb', line 10
def configure_cache_store_adapter
gsub_file Pathname.new(destination_root).join("config/environments/production.rb"),
/(# )?config\.cache_store = (:.*)/, "config.cache_store = :solid_cache_mongoid_store"
gsub_file Pathname.new(destination_root).join("config/environments/development.rb"),
/(# )?config\.cache_store = (:.*)/, "config.cache_store = :solid_cache_mongoid_store"
gsub_file Pathname.new(destination_root).join("config/environments/test.rb"),
/(# )?config\.cache_store = (:.*)/, "config.cache_store = :solid_cache_mongoid_store"
end
|