Related to this but not the same.
I am new to Rails and even with Ruby usually I only do console utilities to do a very particular things that I need to do.
I would like to learn more about Rails and try out some open source Rails applications. For discussion sake, let's say I would like to setup Storytime CMS.
In the installation guide, it says I need to add gem storytime
to my Gemfile. While I know how to do this and I know this is the equivalent (sort of) to gem install storytime
, what I don't understand is: What is the different between
gem install storytime
- Clone the git repository and run
bundle install
And further to that, in my current machine, after cloning git repository, running bundle install
(yes I have bundler gem installed) gave me an error. While gem install storytime
went successfully.
Also, the guide says "Add Storytime to your Gemfile". If I started from scratch, I don't have Gemfile yet. Is that when I need to do bundle init
first?
I know this is quite newbie question but I have searched about this and can't get any clear info. Thanks a lot.