gates_of_moria 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -47,8 +47,7 @@
47
47
  "If I wanted to blow the Horn of Gondor, I might write in Ruby:\n HornOfGondor.blow!",
48
48
  "If you've got time, you might want to watch this video to get a deep dive into what these object things are:\n\nhttp://confreaks.com/videos/1133-scrc2012-thinking-in-objects\n\n(it is roughly 26 minutes long)"
49
49
  ],
50
- "expected_response": "result == 'fcrnx sevraq naq ragre'",
51
- "setup_code": "load File.expand_path('../lib/gates_of_moria/data/door.rb', __FILE__)"
50
+ "expected_response": "result == 'fcrnx sevraq naq ragre'"
52
51
  },
53
52
  {
54
53
  "title": "\nPart 5: Putting it all together\n===============================\n",
File without changes
@@ -1,3 +1,3 @@
1
1
  module GatesOfMoria
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -1,3 +1,4 @@
1
+ require "gates_of_moria/door"
1
2
  require "gates_of_moria/quiz"
2
3
  require "gates_of_moria/repl"
3
4
  require "gates_of_moria/version"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gates_of_moria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -94,9 +94,9 @@ files:
94
94
  - bin/gates_of_moria
95
95
  - gates_of_moria.gemspec
96
96
  - lib/gates_of_moria.rb
97
- - lib/gates_of_moria/data/door.rb
98
97
  - lib/gates_of_moria/data/motd.txt
99
98
  - lib/gates_of_moria/data/questions.json
99
+ - lib/gates_of_moria/door.rb
100
100
  - lib/gates_of_moria/quiz.rb
101
101
  - lib/gates_of_moria/repl.rb
102
102
  - lib/gates_of_moria/version.rb