pokemones 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a522839ace78fabdf55f7543ca383e4bb3b92bf4b864116dfb793189ad59cc28
4
+ data.tar.gz: 53e02d23262b2b2f24502bc504ac1dcec806ed2a0b4d28a8282cbf1bc6802223
5
+ SHA512:
6
+ metadata.gz: 97c13af8934f3288a77b60e7e193fc17a7472d62b6d67c4935c95c5b964539e8399aee93c075f5c9432f0cab2c67d41f78cae31ab6b7b25ec32e03622fe626fe
7
+ data.tar.gz: a6e7b7670d8e3bb6b733fc70a3984bf0f0b642dfeb9061bd9879132bb863b7752b7132d41c6b82766cce304065e19f636da5d06221c39726c8fedae98606676a
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.0
6
+ before_install: gem install bundler -v 2.1.4
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in pokemones.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "minitest", "~> 5.0"
@@ -0,0 +1,31 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ pokemones (0.1.0)
5
+ httparty
6
+ json
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ httparty (0.17.3)
12
+ mime-types (~> 3.0)
13
+ multi_xml (>= 0.5.2)
14
+ json (2.2.0)
15
+ mime-types (3.3.1)
16
+ mime-types-data (~> 3.2015)
17
+ mime-types-data (3.2019.1009)
18
+ minitest (5.14.0)
19
+ multi_xml (0.6.0)
20
+ rake (12.3.3)
21
+
22
+ PLATFORMS
23
+ ruby
24
+
25
+ DEPENDENCIES
26
+ minitest (~> 5.0)
27
+ pokemones!
28
+ rake (~> 12.0)
29
+
30
+ BUNDLED WITH
31
+ 2.1.4
@@ -0,0 +1,36 @@
1
+ # Pokemones
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pokemones`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'pokemones'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install pokemones
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pokemones.
36
+
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "pokemones"
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__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,32 @@
1
+ require "pokemones/version"
2
+ require "httparty"
3
+ require "json"
4
+
5
+ module Pokemones
6
+ class Error < StandardError; end
7
+ include HTTParty
8
+
9
+ base_uri "pokeapi.co"
10
+
11
+ #up to 400
12
+ def self.find_by_id(id)
13
+ result = get("/api/v2/pokemon/#{id}").parsed_response["name"]
14
+ generate_json(result)
15
+ end
16
+
17
+ #up to 17
18
+ def self.find_place(id)
19
+ result = get("/api/v2/encounter-method/#{id}").parsed_response["names"][1]["name"]
20
+ generate_json(result)
21
+ end
22
+
23
+ def self.random_encounter
24
+ puts "You have found #{find_by_id(rand(1..400))}, #{find_place(rand(1..17))}"
25
+ end
26
+
27
+ private
28
+
29
+ def self.generate_json(data)
30
+ JSON.pretty_generate(data)
31
+ end
32
+ end
@@ -0,0 +1,3 @@
1
+ module Pokemones
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,31 @@
1
+ require_relative 'lib/pokemones/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "pokemones"
5
+ spec.version = Pokemones::VERSION
6
+ spec.authors = ["dgarciaap"]
7
+ spec.email = ["dgarcia24@ucol.mx"]
8
+
9
+ spec.summary = %q{A gem for encountering wild pokemon}
10
+ spec.description = %q{A gem for encountering wild pokemon}
11
+ spec.homepage = "https://github.com/dgarciaap/pokemones.git"
12
+ # spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+
14
+ #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/dgarciaap/pokemones.git"
18
+ spec.metadata["changelog_uri"] = "https://github.com/dgarciaap/pokemones.git"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ end
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_dependency "httparty"
30
+ spec.add_dependency "json"
31
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pokemones
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - dgarciaap
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-02-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A gem for encountering wild pokemon
42
+ email:
43
+ - dgarcia24@ucol.mx
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".travis.yml"
50
+ - Gemfile
51
+ - Gemfile.lock
52
+ - README.md
53
+ - Rakefile
54
+ - bin/console
55
+ - bin/setup
56
+ - lib/pokemones.rb
57
+ - lib/pokemones/version.rb
58
+ - pokemones.gemspec
59
+ homepage: https://github.com/dgarciaap/pokemones.git
60
+ licenses: []
61
+ metadata:
62
+ homepage_uri: https://github.com/dgarciaap/pokemones.git
63
+ source_code_uri: https://github.com/dgarciaap/pokemones.git
64
+ changelog_uri: https://github.com/dgarciaap/pokemones.git
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubygems_version: 3.1.2
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: A gem for encountering wild pokemon
84
+ test_files: []