masterdlymind 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in masterdlymind.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Emily Ruf
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Masterdlymind
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'masterdlymind'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install masterdlymind
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/masterdlymind/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ Dir.glob('tasks/**/*.rake').each(&method(:import))
4
+
@@ -0,0 +1,3 @@
1
+ module Masterdlymind
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,79 @@
1
+ class Masterdlymind
2
+
3
+ attr_accessor :secret_code, :guess, :game_over, :play_again
4
+
5
+ COLORS = ['Red', 'Blue', 'Green', 'Yellow', 'Periwinkle', 'Egg Shell', 'Chartreuse']
6
+
7
+ def initialize
8
+ @guess = []
9
+ #randomly choose 4 colors from COLORS
10
+ @secret_code = COLORS.shuffle[0,4]
11
+ @game_over = false
12
+ #@play_again = "Y"
13
+
14
+ end
15
+
16
+ def play_game
17
+ 10.times do |i|
18
+ if @game_over == true
19
+ play_again
20
+ else
21
+ #get guess from user
22
+ make_guess
23
+ #compare guess to code
24
+ compare_guess
25
+ #print out number of guess left
26
+ if @game_over == false
27
+ puts "You have #{9 - i} guesses left."
28
+ end
29
+ end
30
+ end
31
+ #out of attempts - game over
32
+ puts "Game over! The correct code was #{@secret_code.join(', ')}."
33
+ play_again
34
+ end
35
+
36
+
37
+ def make_guess
38
+ #prompt user for input
39
+ puts "Enter 4 colors, separated by commas. Your choices are: \n #{COLORS.join(', ')}"
40
+ @guess = gets.chomp.split(',')
41
+ @guess
42
+ end
43
+
44
+ def compare_guess
45
+ #current_guess = @guess.each_with_index { |c, i| "#{i} #{c}" }
46
+
47
+ if exact_match?
48
+ puts "Congratulations! You cracked the code."
49
+ @game_over = true
50
+ #find the matching colors
51
+ else
52
+ partial_match = []
53
+ @guess.each do |c|
54
+ if @secret_code.include?(c)
55
+ partial_match << c
56
+ end
57
+ end
58
+ #tell the user which colors they had in the wrong spots
59
+ puts "You had #{partial_match.length} out of 4 colors correct"
60
+ end
61
+ partial_match
62
+ end
63
+
64
+ def exact_match?
65
+ @guess == @secret_code
66
+ end
67
+
68
+ def play_again
69
+ puts "Play again? Enter 'y' or 'n'"
70
+ @play_again = gets.chomp
71
+ if @play_again == "y"
72
+ @game_over = false
73
+ play_game
74
+ else
75
+ puts "Thanks for playing!"
76
+ end
77
+ end
78
+
79
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'masterdlymind/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "masterdlymind"
8
+ spec.version = Masterdlymind::VERSION
9
+ spec.authors = ["Emily Ruf"]
10
+ spec.email = ["emxruf@gmail.com"]
11
+ spec.summary = %q{Play a simple game of Mastermind}
12
+ spec.description = %q{Match your wits against the computer in this Ruby implementation of the pattern-guessing game MasterMind}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency 'rspec'
24
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: masterdlymind
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Emily Ruf
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-12-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.7'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.7'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '10.0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '10.0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ description: Match your wits against the computer in this Ruby implementation of the
63
+ pattern-guessing game MasterMind
64
+ email:
65
+ - emxruf@gmail.com
66
+ executables: []
67
+ extensions: []
68
+ extra_rdoc_files: []
69
+ files:
70
+ - .gitignore
71
+ - Gemfile
72
+ - LICENSE.txt
73
+ - README.md
74
+ - Rakefile
75
+ - lib/masterdlymind.rb
76
+ - lib/masterdlymind/version.rb
77
+ - masterdlymind.gemspec
78
+ homepage: ''
79
+ licenses:
80
+ - MIT
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ! '>='
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ none: false
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 1.8.28
100
+ signing_key:
101
+ specification_version: 3
102
+ summary: Play a simple game of Mastermind
103
+ test_files: []