Blog view modification in Ruby On Rails



Yes, if you clone RefineryCMS and then clone the blog engine inside vendor/engines/ then you should be fine (ve.g. you'd end up with vendor/engines/refinerycms-blog/ )
Make sure you tell it the new location of the blog engine once you have it pulled locally though.. e.g.

    gem 'refinerycms-blog', :path => 'vendor/engines/refinerycms-blog'

Or you could install both per normal and run these tasks:

rake refinery:override view=**/*
rake refinery:override controller=**/*
rake refinery:override model=**/*

Though that way will just copy the files wherever which may be a disadvantage.



Comments

Popular posts from this blog

Rails Memcache issues

Enabling password authentication for new ec2 box | ssh, ssh config, EC2 setup, new user in EC2, PasswordAuthentication

What's the difference between "include" and "require" in Ruby?