ygoprodeck 1.0.2 → 1.0.3
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 +4 -4
- data/lib/ygoprodeck/version.rb +1 -1
- data/ygoprodeck.gemspec +2 -1
- metadata +5 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff3315dd441923fc533b67172f3ca49cce025b616af4c3d22b572e681c97fa25
|
|
4
|
+
data.tar.gz: 9bd09ba96142ea6f0cb07009ed86a4ead30ca807778ac84056abb2cf898e3d81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d3156dce4b4fb7a574abaa4aefb61e70a7563d345085cea03e42762492bcb470d0093ed61cc0f4a1ed0ba3815bdc4d252e54bfff3e6171abfeaf200825c3f08
|
|
7
|
+
data.tar.gz: f7d35c637358438764f4877a3f8f0a345d86b64377ba1267d16d1121ecb3d2b7a5dae0c2c6a5ceb8d4883c63b1fede46794add212ee4d1ff5c01638e474b40c3
|
data/lib/ygoprodeck/version.rb
CHANGED
data/ygoprodeck.gemspec
CHANGED
|
@@ -13,7 +13,8 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
|
-
spec.test_files = spec
|
|
16
|
+
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
|
+
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
17
18
|
spec.require_paths = ["lib"]
|
|
18
19
|
|
|
19
20
|
spec.required_ruby_version = '>= 2.0.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ygoprodeck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rokhimin Wahid
|
|
@@ -97,7 +97,9 @@ dependencies:
|
|
|
97
97
|
description: ygoprodeck API wrapper for search yugioh card
|
|
98
98
|
email:
|
|
99
99
|
- rokhim.whd@gmail.com
|
|
100
|
-
executables:
|
|
100
|
+
executables:
|
|
101
|
+
- console
|
|
102
|
+
- setup
|
|
101
103
|
extensions: []
|
|
102
104
|
extra_rdoc_files: []
|
|
103
105
|
files:
|
|
@@ -161,15 +163,4 @@ rubygems_version: 3.0.1
|
|
|
161
163
|
signing_key:
|
|
162
164
|
specification_version: 4
|
|
163
165
|
summary: ygoprodeck API wrapper for search yugioh's card
|
|
164
|
-
test_files:
|
|
165
|
-
- spec/archetype_spec.rb
|
|
166
|
-
- spec/banlist_spec.rb
|
|
167
|
-
- spec/cardsets_spec.rb
|
|
168
|
-
- spec/fuzzy_name_spec.rb
|
|
169
|
-
- spec/image_spec.rb
|
|
170
|
-
- spec/list_spec.rb
|
|
171
|
-
- spec/name_spec.rb
|
|
172
|
-
- spec/random_spec.rb
|
|
173
|
-
- spec/spec_helper.rb
|
|
174
|
-
- spec/ygoprodeck/response_example.json
|
|
175
|
-
- spec/ygoprodeck_spec.rb
|
|
166
|
+
test_files: []
|