Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yuri and Shari - TDD Scrabble #13

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ae3a853
Added Rakefile informaiton from previous assignment
SSBinks Aug 29, 2016
a572f06
Created the class and the module with no info
SSBinks Aug 29, 2016
f3d0396
Set up the specs to test out code. Scoring has the outline of the class
SSBinks Aug 29, 2016
e0fd2b6
The baseline is complete as this has an initialize and an attr_reader…
SSBinks Aug 29, 2016
4f80578
The first initialize test has been created and passes with the inform…
SSBinks Aug 29, 2016
ac42848
We added a hash to the program where the values are keys and letters …
SSBinks Aug 30, 2016
81abdbd
working on score method
Ynakashima Aug 30, 2016
422e7ea
4 tests completed
Ynakashima Aug 30, 2016
9d3f6be
self.score method works
Ynakashima Aug 30, 2016
6823de2
began highest score method
Ynakashima Aug 31, 2016
2db73a6
began tests for highest score method
Ynakashima Aug 31, 2016
cc2c024
The highest score works at a minimum but we are trying to get it to r…
SSBinks Aug 31, 2016
ebee37d
We added a test for scoring about the 50 points and added one up to t…
SSBinks Aug 31, 2016
c213ecc
the highest can now evaluate that the shorter word should win
SSBinks Aug 31, 2016
d38217f
We got the highest method to start working. We have not completed the…
SSBinks Aug 31, 2016
bf6c829
Added the coverage and updated test to accurate information. Added bu…
SSBinks Aug 31, 2016
940136a
wave 2 complete
Ynakashima Sep 1, 2016
b64ccdd
We had some tests fail and had to update the play(word) method to toa…
SSBinks Sep 1, 2016
027350e
We needed to check our tests as we had issues with the won? method
SSBinks Sep 1, 2016
56f4f20
Wave 3 started
Ynakashima Sep 1, 2016
e68acf0
we added draw_tiles method and tested for it. It works
SSBinks Sep 2, 2016
a05be0e
We got the last requirement of equal tiles and scores to pass
SSBinks Sep 2, 2016
6deb2b3
We modified the last test to make sure it was testing for the equal w…
SSBinks Sep 2, 2016
48c7a69
We created the test for the draw tile and made sure it worked
SSBinks Sep 2, 2016
a681688
We were able to complete the requirements for wave 1
SSBinks Sep 2, 2016
c6234cf
Wave 3 almost completed, but not quite
Ynakashima Sep 2, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
We were able to complete the requirements for wave 1
SSBinks committed Sep 2, 2016
commit a6816883c5054129039c42b1778e4f5df802dc6a
1 change: 1 addition & 0 deletions scoring.rb
Original file line number Diff line number Diff line change
@@ -41,6 +41,7 @@ def self.highest_score_from(array_of_words)
letters << self.score(i)
max = self.score(i)
end

array_of_words.each do |word|
word_length << word.length
end