ygoprodeck 1.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 14d034f0f06c886b756da31cb9bad549a70dcac3322a37158c231fa15ec71a82
4
+ data.tar.gz: b456c111cf498f34460d9760d5c5c38e4c8c0d5c0c40d651a78f4d3c555d9eef
5
+ SHA512:
6
+ metadata.gz: 00e945661277143e1ac49f39b5f9aa1849678780c73c3c7528aa8cc6c867918fdf1335f4dd32bff25a0cec6330afb312fe66d789c233500089fa30aef4cba491
7
+ data.tar.gz: 79bf45a6ca5ba49248851095a4ab4cd0958fb437d6d12b6fbc831d420349e90f95474f1bdb75582a372ba19efb21945ae3f3646107b33e0c753ce908ee0bfbfe
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ # update ignore
14
+ goorm.manifest
15
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,7 @@
1
+ Metrics/LineLength:
2
+ Max: 120
3
+ Documentation:
4
+ Enabled: false
5
+ StringLiterals:
6
+ EnforcedStyle: double_quotes
7
+
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.0
7
+ before_install: gem install bundler -v 1.17.2
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at rokhim.whd@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec name: 'ygoprodeck'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 rokhimin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,116 @@
1
+ # Ygoprodeck
2
+
3
+ ![Lang](https://img.shields.io/badge/Language-Ruby-red)
4
+ [![Build Status](https://travis-ci.com/rokhimin/ygoprodeck.svg?branch=master)](https://travis-ci.com/rokhimin/ygoprodeck)
5
+
6
+ API wrapper for search yugioh card
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'ygoprodeck'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install ygoprodeck
23
+
24
+ ## Usage
25
+ first you need :
26
+ ```ruby
27
+ require 'ygoprodeck'
28
+ ```
29
+
30
+ Fuzzy search : (RECOMMENDED use fuzzy)
31
+ ```ruby
32
+ Ygoprodeck::Fname.is('dark magician')
33
+ ```
34
+
35
+ Normal search :
36
+ ```ruby
37
+ Ygoprodeck::Name.is('time wizard')
38
+ ```
39
+
40
+ Random search :
41
+ ```ruby
42
+ Ygoprodeck::Card.random
43
+ ```
44
+
45
+ List search :
46
+ ```ruby
47
+ Ygoprodeck::List.is('magician')
48
+ ```
49
+
50
+ Archetype search :
51
+ ```ruby
52
+ Ygoprodeck::Archetype.is('blue-eyes')
53
+ ```
54
+
55
+ All card sets :
56
+ ```ruby
57
+ Ygoprodeck::Card.sets
58
+ ```
59
+
60
+ Banlist (TCG, OCG, GOAT) :
61
+ ```ruby
62
+ Ygoprodeck::Banlist.tcg
63
+ Ygoprodeck::Banlist.ocg
64
+ Ygoprodeck::Banlist.goat
65
+ ```
66
+
67
+ or look [examples](https://github.com/rokhimin/ygoprodeck/blob/master/examples/search.rb)
68
+
69
+ #### Noted
70
+ Rate Limiting on the API is enabled. The rate limit is 20 requests per 1 second
71
+
72
+ #### Response Information
73
+
74
+ ##### Monster Cards
75
+ - id - ID or Passocde of the card.
76
+ - name - Name of the card.
77
+ - type - The type of card you are viewing (Normal Monster, Effect Monster, Synchro Monster, etc).
78
+ - desc - Card description/effect.
79
+ - atk - The ATK value of the card.
80
+ - def - The DEF value of the card.
81
+ - level - The Level/RANK of the card.
82
+ - race - The card race which is officially called type (Spellcaster, Warrior, Insect, etc).
83
+ - attribute - The attribute of the card.
84
+
85
+ ##### Spell/Trap Cards
86
+
87
+ - id - ID or Passocde of the card.
88
+ - name - Name of the card.
89
+ - type - The type of card you are viewing (Spell Card or Trap Card).
90
+ - desc - Card description/effect.
91
+ - race - The card race which is officially called type for Spell/Trap Cards (Field, Equip, Counter, etc).
92
+
93
+ ##### Additional Response for Pendulum Monsters
94
+
95
+ - scale - The Pendulum Scale Value.
96
+
97
+ ##### Additional Response for Link Monsters
98
+
99
+ - linkval - The Link Value of the card if it's of type "Link Monster".
100
+ - linkmarkers - The Link Markers of the card if it's of type "Link Monster". This information is returned as an array.
101
+
102
+ ## Development
103
+
104
+ #### Test
105
+ ```
106
+ rake spec
107
+ ```
108
+
109
+ ## Contributing
110
+ Fork and Pull Request to contibuting https://github.com/rokhimin/ygoprodeck .
111
+
112
+ ## License
113
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
114
+
115
+ ## Code of Conduct
116
+ Everyone interacting in the Ygoprodeck project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rokhimin/ygoprodeck/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ygoprodeck"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
@@ -0,0 +1,21 @@
1
+ require 'ygoprodeck'
2
+
3
+ # yugi is example, you free to change variable name
4
+ yugi = Ygoprodeck::Fname.is('dark magician') # example I wanna search 'dark magician' using fuzzy search
5
+
6
+ puts yugi # => get all information of dark magician (name,id,level,attr,atk,def,etc)
7
+
8
+ puts '#' *10
9
+
10
+ # => get specific information of dark magician
11
+ puts yugi['id']
12
+ puts yugi['name']
13
+ puts yugi['attribute']
14
+ puts yugi['type']
15
+ puts yugi['race']
16
+ puts yugi['level']
17
+ puts yugi['desc']
18
+ puts yugi['atk']
19
+ puts yugi['def']
20
+ puts Ygoprodeck::Image.is(yugi['id']) # => use id from yugi['id'] to get dark magician image
21
+ puts Ygoprodeck::Image_small.is(yugi['id']) # => small version
@@ -0,0 +1,3 @@
1
+ module Ygoprodeck
2
+ class Error < StandardError; end
3
+ end
@@ -0,0 +1,2 @@
1
+ #
2
+ # sorry I did't created get all card, because you need 2 days to get all card
@@ -0,0 +1,21 @@
1
+
2
+ module Ygoprodeck
3
+ class Archetype
4
+ attr_reader :archetype
5
+ def self.is(archetype)
6
+ url = "#{Ygoprodeck::Endpoint.is}?archetype=#{archetype}"
7
+ uri = URI(url)
8
+ response = Net::HTTP.get(uri)
9
+ load = JSON.parse(response)
10
+
11
+ if load[0] == nil
12
+ '{"error"=>"No card matching your query was found in the database."}'
13
+ else
14
+ load
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
21
+
@@ -0,0 +1,26 @@
1
+
2
+ module Ygoprodeck
3
+ class Banlist
4
+ def self.tcg
5
+ url = "#{Ygoprodeck::Endpoint.is}?banlist=tcg"
6
+ uri = URI(url)
7
+ response = Net::HTTP.get(uri)
8
+ load = JSON.parse(response)
9
+ load
10
+ end
11
+ def self.ocg
12
+ url = "#{Ygoprodeck::Endpoint.is}?banlist=ocg"
13
+ uri = URI(url)
14
+ response = Net::HTTP.get(uri)
15
+ load = JSON.parse(response)
16
+ load
17
+ end
18
+ def self.goat
19
+ url = "#{Ygoprodeck::Endpoint.is}?banlist=goat"
20
+ uri = URI(url)
21
+ response = Net::HTTP.get(uri)
22
+ load = JSON.parse(response)
23
+ load
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,12 @@
1
+
2
+ module Ygoprodeck
3
+ class Card
4
+ def self.sets
5
+ url = "https://db.ygoprodeck.com/api/v5/cardsets.php"
6
+ uri = URI(url)
7
+ response = Net::HTTP.get(uri)
8
+ load = JSON.parse(response)
9
+ load
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,8 @@
1
+
2
+ module Ygoprodeck
3
+ class Endpoint
4
+ def self.is
5
+ "https://db.ygoprodeck.com/api/v5/cardinfo.php"
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,16 @@
1
+
2
+ module Ygoprodeck
3
+ class Image
4
+ attr_reader :image_by_id
5
+ def self.is(image_by_id)
6
+ "https://storage.googleapis.com/ygoprodeck.com/pics/#{image_by_id}.jpg"
7
+ end
8
+ end
9
+
10
+ class Image_small
11
+ attr_reader :image_small_by_id
12
+ def self.is(image_small_by_id)
13
+ "https://storage.googleapis.com/ygoprodeck.com/pics_small/#{image_small_by_id}.jpg"
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,21 @@
1
+
2
+ module Ygoprodeck
3
+ class Fname
4
+ attr_reader :f_name
5
+ def self.is(f_name)
6
+ url = "#{Ygoprodeck::Endpoint.is}?fname=#{f_name}"
7
+ uri = URI(url)
8
+ response = Net::HTTP.get(uri)
9
+ load = JSON.parse(response)
10
+
11
+ if load[0] == nil
12
+ '{"error"=>"No card matching your query was found in the database."}'
13
+ else
14
+ load[0]
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
21
+
@@ -0,0 +1,21 @@
1
+
2
+ module Ygoprodeck
3
+ class List
4
+ attr_reader :list
5
+ def self.is(list)
6
+ url = "#{Ygoprodeck::Endpoint.is}?fname=#{list}"
7
+ uri = URI(url)
8
+ response = Net::HTTP.get(uri)
9
+ load = JSON.parse(response)
10
+
11
+ if load[0] == nil
12
+ '{"error"=>"No card matching your query was found in the database."}'
13
+ else
14
+ load
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
21
+
@@ -0,0 +1,21 @@
1
+
2
+ module Ygoprodeck
3
+ class Name
4
+ attr_reader :name
5
+ def self.is(name)
6
+ url = "#{Ygoprodeck::Endpoint.is}?name=#{name}"
7
+ uri = URI(url)
8
+ response = Net::HTTP.get(uri)
9
+ load = JSON.parse(response)
10
+
11
+ if load[0] == nil
12
+ '{"error"=>"No card matching your query was found in the database."}'
13
+ else
14
+ load[0]
15
+ end
16
+
17
+ end
18
+ end
19
+
20
+ end
21
+
@@ -0,0 +1,12 @@
1
+
2
+ module Ygoprodeck
3
+ class Card
4
+ def self.random
5
+ url = "https://db.ygoprodeck.com/api/v5/randomcard.php"
6
+ uri = URI(url)
7
+ response = Net::HTTP.get(uri)
8
+ load = JSON.parse(response)
9
+ load[0]
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,3 @@
1
+ module Ygoprodeck
2
+ VERSION = "1.0.1"
3
+ end
data/lib/ygoprodeck.rb ADDED
@@ -0,0 +1,19 @@
1
+ require 'open-uri'
2
+ require 'net/http'
3
+ require 'json'
4
+ require 'ygoprodeck/version'
5
+ require 'ygoprodeck/errors'
6
+ require 'ygoprodeck/search/client/endpoint'
7
+ require 'ygoprodeck/search/client/image_gapis'
8
+ require 'ygoprodeck/search/card_sets'
9
+ #require 'ygoprodeck/search/all_card' # performance issue
10
+ require 'ygoprodeck/search/random'
11
+ require 'ygoprodeck/search/name'
12
+ require 'ygoprodeck/search/list'
13
+ require 'ygoprodeck/search/fuzzy_name'
14
+ require 'ygoprodeck/search/archetype'
15
+ require 'ygoprodeck/search/banlist'
16
+
17
+ module Ygoprodeck
18
+
19
+ end
@@ -0,0 +1,14 @@
1
+ require "bundler/setup"
2
+ require "ygoprodeck"
3
+
4
+ RSpec.configure do |config|
5
+ # Enable flags like --only-failures and --next-failure
6
+ config.example_status_persistence_file_path = ".rspec_status"
7
+
8
+ # Disable RSpec exposing methods globally on `Module` and `main`
9
+ config.disable_monkey_patching!
10
+
11
+ config.expect_with :rspec do |c|
12
+ c.syntax = :expect
13
+ end
14
+ end
@@ -0,0 +1,6 @@
1
+ RSpec.describe Ygoprodeck do
2
+ it "has a version number" do
3
+ expect(Ygoprodeck::VERSION).not_to be nil
4
+ end
5
+
6
+ end
@@ -0,0 +1,24 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'ygoprodeck/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "ygoprodeck"
7
+ spec.version = Ygoprodeck::VERSION
8
+ spec.authors = ["Rokhimin Wahid"]
9
+ spec.email = ["rokhim.whd@gmail.com"]
10
+ spec.summary = "ygoprodeck API wrapper for search yugioh's card"
11
+ spec.description = "ygoprodeck API wrapper for search yugioh card"
12
+ spec.homepage = "http://github.com/rokhimin/ygoprodeck"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.test_files = spec.files.grep(/^spec\//)
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.required_ruby_version = '>= 2.0.0'
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.17"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec", "~> 3.0"
24
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ygoprodeck
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Rokhimin Wahid
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-10-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: ygoprodeck API wrapper for search yugioh card
56
+ email:
57
+ - rokhim.whd@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - ".travis.yml"
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - examples/search.rb
74
+ - lib/ygoprodeck.rb
75
+ - lib/ygoprodeck/errors.rb
76
+ - lib/ygoprodeck/search/all_card.rb
77
+ - lib/ygoprodeck/search/archetype.rb
78
+ - lib/ygoprodeck/search/banlist.rb
79
+ - lib/ygoprodeck/search/card_sets.rb
80
+ - lib/ygoprodeck/search/client/endpoint.rb
81
+ - lib/ygoprodeck/search/client/image_gapis.rb
82
+ - lib/ygoprodeck/search/fuzzy_name.rb
83
+ - lib/ygoprodeck/search/list.rb
84
+ - lib/ygoprodeck/search/name.rb
85
+ - lib/ygoprodeck/search/random.rb
86
+ - lib/ygoprodeck/version.rb
87
+ - spec/spec_helper.rb
88
+ - spec/ygoprodeck_spec.rb
89
+ - ygoprodeck.gemspec
90
+ homepage: http://github.com/rokhimin/ygoprodeck
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.0.0
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubygems_version: 3.0.1
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: ygoprodeck API wrapper for search yugioh's card
113
+ test_files:
114
+ - spec/spec_helper.rb
115
+ - spec/ygoprodeck_spec.rb