Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Shopify Application Development

You're reading from   Shopify Application Development Build highly effective Shopify apps using the powerful Ruby on Rails framework

Arrow left icon
Product type Paperback
Published in May 2014
Publisher
ISBN-13 9781783281053
Length 106 pages
Edition Edition
Concepts
Arrow right icon
Author (1):
Arrow left icon
Michael Larkin Michael Larkin
Author Profile Icon Michael Larkin
Michael Larkin
Arrow right icon
View More author details
Toc

Installing Rails


For the purposes of this book, I am going to explicitly specify the version of Rails we want to use rather than just grabbing the latest stable version. I am doing this to ensure that the code examples work correctly several months from now. One catch when using the latest version of Rails is that the gems you want to use might not have been updated yet by their authors. This can lead to bugs being introduced that might not have an easy solution. I tend to lag one version behind (although I do keep an eye out for critical security patches) to ensure that I can build stable apps for my clients. The following command can be used to install Rails 4.0.3:

gem install rails -v 4.0.3 --no-ri --no-rdoc

Generating a Rails app

Rails comes with many helpful scripts, including one to generate a "vanilla" Rails application as follows:

rails new .

The preceding command will create the app in the current directory and automatically install the required gems. At this point, we can start...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image