slack_game 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13c361e20aa040633c7531bc913be0e7a28c32f5
4
- data.tar.gz: 2f1283d07c089e06c5d02d62afffd7f9d7d688c7
3
+ metadata.gz: b832f686474b7cbb6d76598301f784be79857623
4
+ data.tar.gz: 0396d9bca5e3405f750d34f2fa63dc44891a06dd
5
5
  SHA512:
6
- metadata.gz: 29198950645c816080af7aafd18b4587eaa738aa52c8491b22a4551ba5f9bcbd5d5225c3450085184b6b5eac8a9f8bc648e76099d8c86f7dd847b326121980b7
7
- data.tar.gz: bcf1ab36f2359f2407ed8a856106c4bca8848a2d63da01936dfeca29b284fcaeebbae64d2cd7946222f3960330e2d7249b6a0f2e29222e8a694db4f62e828ed1
6
+ metadata.gz: 244887aae4a178155ad508371e85d67d30cf63141969f679a755c22cb3c3b3b56d74753da570a290fc1098d92c868bf9b53423ba40e61b37b8a821ad3dd8ff3e
7
+ data.tar.gz: 813db0f650369c3f5f31722a00c4ead8b7dc84bd8b82b74d584236a9239cf39ae06290589f926de41c5b40e5233a483a76b32ef9b08885b1a9b72511ff2e6751
@@ -0,0 +1,8 @@
1
+ module SlackGame
2
+ module Game
3
+ class Tetris
4
+ class Canvas < ::SlackGame::Canvas
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module SlackGame
2
+ module Game
3
+ class Tetris
4
+ class Controller < ::SlackGame::Controller
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ require 'slack_game/game/tetris/controller'
2
+ require 'slack_game/game/tetris/canvas'
3
+
4
+ module SlackGame
5
+ module Game
6
+ class Tetris
7
+ end
8
+ end
9
+ end
@@ -1,6 +1,5 @@
1
1
  module SlackGame
2
2
  module Game
3
- require 'slack_game/game/tetris'
4
3
  require 'slack_game/game/demo'
5
4
  end
6
5
  end
@@ -1,3 +1,3 @@
1
1
  module SlackGame
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack_game
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kinoshita.Yasuhiro
@@ -116,6 +116,9 @@ files:
116
116
  - lib/slack_game/game/demo.rb
117
117
  - lib/slack_game/game/demo/canvas.rb
118
118
  - lib/slack_game/game/demo/controller.rb
119
+ - lib/slack_game/game/tetris.rb
120
+ - lib/slack_game/game/tetris/canvas.rb
121
+ - lib/slack_game/game/tetris/controller.rb
119
122
  - lib/slack_game/version.rb
120
123
  - slack_game.gemspec
121
124
  homepage: https://github.com/YasuhiroKinoshita/skack-game