Skip to content
This repository was archived by the owner on May 24, 2018. It is now read-only.

Commit e769e8f

Browse files
committed
refactoring of the katas
1 parent 1fde8cf commit e769e8f

File tree

6 files changed

+65
-0
lines changed

6 files changed

+65
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# put your extra gems here
2+
# gem 'rails'
3+
4+
# require the base Gemfile
5+
eval(IO.read('../Gemfile'), binding)
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
coderay (1.0.9)
5+
diff-lcs (1.2.4)
6+
ffi (1.8.1)
7+
formatador (0.2.4)
8+
guard (1.8.0)
9+
formatador (>= 0.2.4)
10+
listen (>= 1.0.0)
11+
lumberjack (>= 1.0.2)
12+
pry (>= 0.9.10)
13+
thor (>= 0.14.6)
14+
guard-rspec (3.0.0)
15+
guard (>= 1.8)
16+
rspec (~> 2.13)
17+
listen (1.1.2)
18+
rb-fsevent (>= 0.9.3)
19+
rb-inotify (>= 0.9)
20+
rb-kqueue (>= 0.2)
21+
lumberjack (1.0.3)
22+
method_source (0.8.1)
23+
pry (0.9.12.2)
24+
coderay (~> 1.0.5)
25+
method_source (~> 0.8)
26+
slop (~> 3.4)
27+
rb-fsevent (0.9.3)
28+
rb-inotify (0.9.0)
29+
ffi (>= 0.5.0)
30+
rb-kqueue (0.2.0)
31+
ffi (>= 0.5.0)
32+
rspec (2.13.0)
33+
rspec-core (~> 2.13.0)
34+
rspec-expectations (~> 2.13.0)
35+
rspec-mocks (~> 2.13.0)
36+
rspec-core (2.13.1)
37+
rspec-expectations (2.13.0)
38+
diff-lcs (>= 1.1.3, < 2.0)
39+
rspec-given (2.4.3)
40+
rspec (>= 2.12)
41+
sorcerer (>= 0.3.7)
42+
rspec-mocks (2.13.1)
43+
slop (3.4.5)
44+
sorcerer (0.3.10)
45+
thor (0.18.1)
46+
47+
PLATFORMS
48+
ruby
49+
50+
DEPENDENCIES
51+
guard-rspec
52+
rspec
53+
rspec-given
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../Guardfile
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../Rakefile

Gemfile

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

0 commit comments

Comments
 (0)