Commit 2886aba

mo khan <mo@mokhan.ca>
2014-06-23 01:57:24
rename gof to gol.
1 parent 287f826
bin/gof → bin/gol
@@ -1,6 +1,6 @@
 #!/bin/env ruby
 $:.unshift('lib')
-require 'gof'
+require 'gol'
 
 game = Game.new($stdout)
 game.play(3, 3)
lib/gof/cell.rb → lib/gol/cell.rb
File renamed without changes
lib/gof/game.rb → lib/gol/game.rb
File renamed without changes
lib/gof/world.rb → lib/gol/world.rb
File renamed without changes
lib/gof.rb
@@ -1,3 +0,0 @@
-require "gof/cell"
-require "gof/game"
-require "gof/world"
lib/gol.rb
@@ -0,0 +1,3 @@
+require "gol/cell"
+require "gol/game"
+require "gol/world"
spec/spec_helper.rb
@@ -14,7 +14,7 @@
 # users commonly want.
 #
 # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
-require 'gof'
+require 'gol'
 
 RSpec.configure do |config|
 # The settings below are suggested to provide a good initial experience