June 2018
Intermediate to advanced
304 pages
8h 29m
English

Photo: mattiaath/123RF
In preparation for creating your first CBRA app, you should ensure that your system is up to date with regard to Ruby and Rails. I suggest using the latest published versions of both Ruby and the Rails gems. The way I have my system set up, using the Ruby Version Manager (RVM) (http://rvm.io/), is something like the following:
Install rvm, bundler, and rails. Execute anywhere
$ rvm get stable $ rvm install 2.4.2 $ gem install bundler -v '1.15.4' $ gem install rails -v '5.1.4'
Code Samples: The Sportsball App
Throughout this book, we are going ...