pazaak 0.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +5 -0
  3. data/lib/pazaak.rb +11 -0
  4. metadata +45 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b10038ab9abc2481053b447b4a0ae1fc29c0275b95830187cfb706deb9a7cc74
4
+ data.tar.gz: 57204fa4a1a8e507e752d54a10298388e4fd1531ffd2af1f66f640ad684b817b
5
+ SHA512:
6
+ metadata.gz: 3882d603b009f16c96760b4354a7c2a5d53c817e95119ba541dd242f4d2adbcde2ce53a69969d06f7e411342fb2bed6c9c4a96954a67da811d7b05343db883d0
7
+ data.tar.gz: 72f2d77652a5836fa3a6272b1296c0135b9a8dc979b319263f862b8501c8eb423bc9e88e95a50218b5730ce054ddf4757f94ed71123b53fce6325fd1306275a2
@@ -0,0 +1,5 @@
1
+ # Pazaak
2
+
3
+ [![Build Status](https://travis-ci.org/dsosedov/pazaak.svg?branch=master)](https://travis-ci.org/dsosedov/pazaak)
4
+
5
+ A game engine written in Ruby. A popular ancient Galactic card game from the times of the Old Republic.
@@ -0,0 +1,11 @@
1
+ # The root namespace
2
+ module Pazaak
3
+ MAX = 0
4
+ MIN = 0
5
+ REV = 0
6
+
7
+ # Gem version
8
+ VERSION = "#{MAX}.#{MIN}.#{REV}"
9
+
10
+ private_constant :MAX, :MIN, :REV
11
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pazaak
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Dmitrii Sosedov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A pazaak game engine
14
+ email: d.sosedov@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - lib/pazaak.rb
21
+ homepage: http://rubygems.org/gems/pazaak
22
+ licenses:
23
+ - MIT
24
+ metadata:
25
+ yard.run: yri
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubygems_version: 3.0.2
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: A popular ancient Galactic card game from the times of the Old Republic
45
+ test_files: []