pokemon_tcg_sdk 2.2.1 → 2.3.0

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: 5824c0fd76b22e6ed5e3a18e7285a48479737cf1
4
- data.tar.gz: 803edc3606c825b9b6633c8cf38f7a940ff482db
3
+ metadata.gz: 480bd77457d18adf702ebbe27487d668a0cb3477
4
+ data.tar.gz: a08938dd0834cfca2c050801ff09201c81afa973
5
5
  SHA512:
6
- metadata.gz: 3efc031d942ed4d33745d83894c211f0866e03a9768839160344e434a39e83c94849fc0de102ad4451cca1e84848e90c44bcc96f29331e7a2e4ed17b8d447731
7
- data.tar.gz: 2913e8bf56cc332ee45a1049f9d798bc83799ce87db11a5dd22642a8f24d554b3fc5e44820eaa05b6488d71e7b5ebbbda37803e5b448374e40fec7e642ad5f8a
6
+ metadata.gz: eae9b137e60912497d64d94533a7bc1761b50ba5f94a43bc4faa9ceb142fb37557ead8b42e668fb2db465dc3469cf9d160037aa059463b062435d5c1b5bada28
7
+ data.tar.gz: 566a429fde35e5b1c3969cd4a54497b511b5213a0eb0e9dc145c3a6fd72e87c7d04f10e1861d9c41dd656e37feb5279cfffb05e709f78f67a4bd5662127e9a73
data/README.md CHANGED
@@ -50,6 +50,7 @@ To change the API version (currently defaults to version 1)
50
50
  name
51
51
  national_pokedex_number
52
52
  image_url
53
+ image_url_hi_res
53
54
  subtype
54
55
  supertype
55
56
  ability
@@ -75,12 +76,14 @@ To change the API version (currently defaults to version 1)
75
76
  series
76
77
  total_cards
77
78
  standard_legal
79
+ expanded_legal
78
80
  release_date
79
81
 
80
82
  #### Ability
81
83
 
82
84
  name
83
85
  text
86
+ type
84
87
 
85
88
  #### AncientTrait
86
89
 
@@ -5,7 +5,7 @@ module Pokemon
5
5
  include Roar::JSON
6
6
  include CardRepresenter
7
7
 
8
- attr_accessor :id, :name, :image_url, :subtype, :supertype, :ability,
8
+ attr_accessor :id, :name, :image_url, :image_url_hi_res, :subtype, :supertype, :ability,
9
9
  :hp, :number, :artist, :rarity, :series, :set, :set_code,
10
10
  :retreat_cost, :text, :types, :attacks, :weaknesses, :resistances,
11
11
  :national_pokedex_number, :ancient_trait
@@ -15,6 +15,7 @@ module Pokemon
15
15
  property :id
16
16
  property :name
17
17
  property :image_url, as: :imageUrl
18
+ property :image_url_hi_res, as: :imageUrlHiRes
18
19
  property :subtype
19
20
  property :supertype
20
21
  property :ability, extend: AbilityRepresenter, class: Ability
@@ -9,6 +9,7 @@ module Pokemon
9
9
  property :series
10
10
  property :total_cards, as: :totalCards
11
11
  property :standard_legal, as: :standardLegal
12
+ property :expanded_legal, as: :expandedLegal
12
13
  property :release_date, as: :releaseDate
13
14
  end
14
15
  end
@@ -5,7 +5,7 @@ module Pokemon
5
5
  include Roar::JSON
6
6
  include SetRepresenter
7
7
 
8
- attr_accessor :code, :name, :series, :total_cards, :standard_legal, :release_date
8
+ attr_accessor :code, :name, :series, :total_cards, :standard_legal, :expanded_legal, :release_date
9
9
 
10
10
  # Get the resource string
11
11
  #
@@ -1,3 +1,3 @@
1
1
  module Pokemon
2
- VERSION = "2.2.1"
2
+ VERSION = "2.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pokemon_tcg_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Backes
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-16 00:00:00.000000000 Z
11
+ date: 2017-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler