irbthbound 0.0.1 → 0.0.2

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: 359b2a0c8af6c56de5b79f87aa400ee6d60c7738
4
- data.tar.gz: 782f1ca34ca58521d67da7cae31d4c052845e8fe
3
+ metadata.gz: ac5d05486b05d706aea79214b576027e6a774493
4
+ data.tar.gz: 15435bf320a6a58550e8906ef1ea55710c8317c7
5
5
  SHA512:
6
- metadata.gz: eb060f92bcf6bacbf2ab078d5f59c391246aeb736c01c7651d7c724ec41a76d2fed32da89797e13c28e65c61a582986a495d4eabf0ea64bf6a5842d2903ef044
7
- data.tar.gz: 51381049d0ded892792c03bcbbfb4b139231afb2c0b8a948313a132ccb063cda8158818021a2493f893f87da5d9b7c1a8646b45abbfe590979e29ab9f6fa009e
6
+ metadata.gz: 14cc853af1e53f0ec122b035492484648e10478653de692fca837102540361677752dda7a9b1d7c11ecefb8620443fcacf674f27cfd221f67c12c3dad0508bf9
7
+ data.tar.gz: 58c9c81acf943d8c36182436df7c3f3b1a132fa00e41132a3c319ec68770f2551085b4db890d8735a1c4f140878908df3f30fdfc8d1baa66c8e15ae49913aef6
data/README.md CHANGED
@@ -27,10 +27,20 @@ As you're playing, you'll be able to save the game, which will write some slight
27
27
 
28
28
  Clone this repo and run `bundle install` to install dependencies.
29
29
 
30
+ ### REPL
31
+
30
32
  `bin/console` will get you into a development REPL.
31
33
 
34
+ ### Game
35
+
32
36
  `rake run` starts a new game, which means starting a Pry session bound to an `Irbthbound::Player` instance.
33
37
 
38
+ ### Local Build
39
+
40
+ `rake build && rake install` builds what you've got and installs it locally, including the `irbthbound` executable, which you can then run.
41
+
42
+ ### Deployment
43
+
34
44
  `rake release` to deploy to http://rubygems.org.
35
45
 
36
46
  ## Contributing
@@ -1,5 +1,10 @@
1
- module Irbthbound::CLI
2
- def main
1
+ module Irbthbound
2
+ class CLI
3
+
4
+ end
5
+
6
+ def CLI.main(argv)
3
7
  puts 'hello world!'
4
8
  end
5
9
  end
10
+
@@ -1,3 +1,3 @@
1
1
  module Irbthbound
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/irbthbound.rb CHANGED
@@ -1,5 +1,2 @@
1
1
  require 'irbthbound/cli'
2
2
 
3
- module Irbthbound
4
-
5
- end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbthbound
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
  - Dave Yarwood