Skip to content

Commit bce283d

Browse files
committed
added a Gemfile for dependencies to ease installation for ruby beginners
1 parent 9098e4c commit bce283d

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
coverage
2+
Gemfile.lock

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
gem 'rspec'
3+
gem 'rspec-given'

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,22 @@ following changes:
2525
You can read
2626
[the original kata article](http://www.iamnotmyself.com/2011/02/13/RefactorThisTheGildedRoseKata.aspx) for more details.
2727

28+
## Installation Hints
29+
30+
The easiest way is to use bundler to install the dependencies. To do so, you need to install the bundler gem if you haven't already done so
31+
32+
gem install bundler
33+
34+
run bundler
35+
36+
bundle
37+
38+
and should be ready to go. Alternatively, you can install the dependencies one by one using gem install, e.g.
39+
40+
gem install rspec-given
41+
42+
Have a look at the Gemfile for all dependencies.
43+
2844
## Git Branches
2945

3046
* The 'master' branch contains the starting point for the kata. It is

0 commit comments

Comments
 (0)