Skip to content

Commit 7eb7318

Browse files
committed
We can now blindly commit everything we change without worrying about what's hanging around.
1 parent becc12b commit 7eb7318

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
*_test.*
33
rotation.txt
44
test*.txt
5-
results.txt
5+
results.txt
6+
.bundle/*
7+
bin/*
8+
rotate.txt

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format documentation

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ruby '2.1.2'
2+
source 'https://rubygems.org'
3+
4+
gem 'rspec'

Gemfile.lock

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
diff-lcs (1.2.5)
5+
rspec (3.1.0)
6+
rspec-core (~> 3.1.0)
7+
rspec-expectations (~> 3.1.0)
8+
rspec-mocks (~> 3.1.0)
9+
rspec-core (3.1.4)
10+
rspec-support (~> 3.1.0)
11+
rspec-expectations (3.1.1)
12+
diff-lcs (>= 1.2.0, < 2.0)
13+
rspec-support (~> 3.1.0)
14+
rspec-mocks (3.1.1)
15+
rspec-support (~> 3.1.0)
16+
rspec-support (3.1.0)
17+
18+
PLATFORMS
19+
ruby
20+
21+
DEPENDENCIES
22+
rspec

todo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- rename unit and acceptance tests to be more intuitive (maybe)
66
- refactor MobRotation#initialize to read file once
77
- refactor MobRotation#initialize to use either 2 class methods or 2 instance methods (extract_<something>_from)
8-
8+
- add hook to emacs configuration to automatically show line numbers in (all?) files
99

1010
help w/o specifying database
1111
make main class match file name **** Done

0 commit comments

Comments
 (0)