card_set 0.0.0.beta.1
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 +15 -0
- data/lib/card_set.rb +2 -0
- data/lib/card_set/version.rb +12 -0
- metadata +45 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
Y2E3MjI3YTIzOGQ2MjFmMGMxMDE0MmRmM2EwMTBkYzFmZGUxZDNiNg==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
NmIyYTA2MWQ3NGVlMTU4MzA0MTVlMjdiYmI0NTBmZDViMGM2MzU2Mg==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
ZjE4MmI5YTJiZTczYmZjOTQwNmMwNmNmZDlkNGZmMGUzNDJkMjEzMTBlYTJk
|
|
10
|
+
MDBmN2EyNjliYzYzMmMzMTIxNTUzNzZjYjliODBkMTg3MzA1ZjE5NDgyOGMz
|
|
11
|
+
NDdkYTFjZGRlNDMyN2JjNDU0NGMzN2Q1YjVmZWNlOTBkY2IxZGM=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
NDY3NmI0YWY2NGMwMjZhMzcxOTI1ZjU2NDJmMWJlMDEzNzA2NDJjMWNiOTQ5
|
|
14
|
+
NTJhNzRjZGEyYjM1MjJkYjY2NmM2NzhmZTAzZWY2YWJmMjg3NzYxMmFiMmQ0
|
|
15
|
+
ZThkMThlNGNjNmI0ZGU0ZjIzMzkzMTU1MmY3ZDM5YjFiYWZiZDU=
|
data/lib/card_set.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module CardSet
|
|
2
|
+
class Version
|
|
3
|
+
MAJ = 0
|
|
4
|
+
MIN = 0
|
|
5
|
+
FIX = 0
|
|
6
|
+
PRE = "beta.1"
|
|
7
|
+
|
|
8
|
+
def self.semantic
|
|
9
|
+
"#{CardSet::Version::MAJ}.#{CardSet::Version::MIN}.#{CardSet::Version::FIX}#{"." unless CardSet::Version::PRE.nil?}#{CardSet::Version::PRE}"
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: card_set
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0.beta.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dmitrii Sosedov
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A card set, card deck (US) or card pack (UK) engine
|
|
14
|
+
email: dmitrii@sosedov.org
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/card_set.rb
|
|
20
|
+
- lib/card_set/version.rb
|
|
21
|
+
homepage: http://rubygems.org/gems/card_set
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata: {}
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ! '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ! '>'
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: 1.3.1
|
|
39
|
+
requirements: []
|
|
40
|
+
rubyforge_project:
|
|
41
|
+
rubygems_version: 2.4.5
|
|
42
|
+
signing_key:
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: Card Set
|
|
45
|
+
test_files: []
|