rtacconi
rtacconi

Reputation: 14769

Unpack refinery gems in rails project

I tried rake gem:unpack but I get task not found. I would like to have refinery gems in my /vendor directory to be able to see the never ending views and partials and may be modify them.

Upvotes: 1

Views: 126

Answers (2)

stephenmurdoch
stephenmurdoch

Reputation: 34613

run bundle package

more here: http://gembundler.com/bundle_package.html

Upvotes: 0

Micah Jaffe
Micah Jaffe

Reputation: 84

I'm still learning how to do things the "Rails way", but I feel your need to have the files in a directory that's easy to see. One command I found that will dump in vendor in the local project is bundle install --deployment. You'll need to run this after initially doing a bundle install.

Upvotes: 1

Related Questions