├── .github └── workflows │ └── linters.yml ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── main.rb ├── lib ├── .gitkeep ├── game.rb ├── player.rb └── rules.rb ├── rubocop.yml └── spec ├── game_spec.rb ├── player_spec.rb └── spec_helper.rb /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --format documentation -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/README.md -------------------------------------------------------------------------------- /bin/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/bin/main.rb -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/lib/game.rb -------------------------------------------------------------------------------- /lib/player.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/lib/player.rb -------------------------------------------------------------------------------- /lib/rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/lib/rules.rb -------------------------------------------------------------------------------- /rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/rubocop.yml -------------------------------------------------------------------------------- /spec/game_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/spec/game_spec.rb -------------------------------------------------------------------------------- /spec/player_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/spec/player_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anapdh/tictactoe-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------