glitch-game 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a60d336dfa3cba758f03c1b349b8aa6ad6a6878d
4
- data.tar.gz: b9411ce3b606516596dc824747021001056b8aa5
3
+ metadata.gz: 38db63d7d413c6a8b0b87aad070e31dbb1e122c4
4
+ data.tar.gz: 8aec6e43559d600ae7aaf16dec8cc01983f9e587
5
5
  SHA512:
6
- metadata.gz: b42c21aa73bab39ec7bbe80067eea39e914b90f87dda61e95040cb2a62e91b81bd5d84bb3bb42b74845f00bfc6ba4a966538c251c6f232a1f8574a4ba20ae784
7
- data.tar.gz: 0340ad3857521fd1296b5446604cf7b2631bff8400e7755a0f8ae8804c0a833e1c9df245ac2f37bb84a02355fda0edd0f5d3ad596054c3257f6f56a46205f43f
6
+ metadata.gz: 5f3f138dc33b0e5400e1ef7ca31a2ed3fad483e3b206cb9279c7071a2b3f717d260c2271610630b2bd887a9a80d1d33a0c94aaa7c7e24b91383bb545cb7b799e
7
+ data.tar.gz: 992f6def36b762d514a6db734e276a4c04e5411ea4962f1dbc9240147a8e3344ec7cb4b305d45e8f70a5dac27dec0cbea42049bd2ff72673f2d15355245befc0
@@ -7,10 +7,8 @@ A terminal based [Cookie Clicker] style game.
7
7
  ### Installing and Running
8
8
 
9
9
  ```
10
- git clone git@github.com:twe4ked/glitch.git
11
- cd glitch
12
- bundle install
13
- bundle exec ./bin/glitch
10
+ gem install glitch-game
11
+ glitch
14
12
  ```
15
13
 
16
14
  [Cookie Clicker]: http://en.wikipedia.org/wiki/Cookie_Clicker
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'glitch'
4
+ require 'glitch/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'glitch-game'
@@ -4,5 +4,4 @@ require_relative 'type'
4
4
  require_relative 'glitch_string'
5
5
 
6
6
  module Glitch
7
- VERSION = '0.0.1'
8
7
  end
@@ -0,0 +1,3 @@
1
+ module Glitch
2
+ VERSION = '0.0.2'
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glitch-game
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Odin Dutton
@@ -68,6 +68,7 @@ files:
68
68
  - glitch-game.gemspec
69
69
  - lib/game.rb
70
70
  - lib/glitch.rb
71
+ - lib/glitch/version.rb
71
72
  - lib/glitch_string.rb
72
73
  - lib/player.rb
73
74
  - lib/type.rb