I need to use Rally API dev kit rally_rest_api gem. I'm new with ruby. Is the any way to do it quickly ? Thanks for helping !
Asked
Active
Viewed 440 times
1 Answers
2
You should have a file called Gemfile
in the root of your Dashing project. It should already contain the dashing
gem itself:
gem 'dashing'
Simply add the following below it:
gem 'rally_rest_api'
And run bundle install
. To actually use the gem in your project, take a look at the documentation.

Kevin
- 1,213
- 10
- 13
-
Note, this relies on you having bundler installed already -- probably a safe assumption. If you get errors, you'll need to `gem install bundler` before running `bundle install`. – tylermauthe May 30 '15 at 19:42