liblab_the_one 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 741e0a412dd8d819491fdf28c9f39f34a55a82ed0ef46e09a451146892e4e110
4
+ data.tar.gz: 708aa4fc97a346afe379f2442e74e1c01d3a680476b701469357d3394daf28d5
5
+ SHA512:
6
+ metadata.gz: 6ee78d19db8cd207d26fc4e291d4e7c29a03d46a143a35f098d684a448aa3a82f41d2e54f647c385062e921ad3e578dcdab7f8c18a54dce7baceaf23cd6dee2d
7
+ data.tar.gz: 1e91ddc7dc02c8950dfb4b347246dd4204ba315b8e59ba2f68d29f6ddd3bdf26f302266b6124f6d7021d9396feb84a4ee0773d7fc2c715483a99e841d6369119
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-05-23
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at montylennie@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in liblab.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,81 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ liblab_the_one (0.1.0)
5
+ pry (~> 0.14.2)
6
+ rest-client (~> 2.1.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ coderay (1.1.3)
13
+ diff-lcs (1.5.0)
14
+ domain_name (0.5.20190701)
15
+ unf (>= 0.0.5, < 1.0.0)
16
+ http-accept (1.7.0)
17
+ http-cookie (1.0.5)
18
+ domain_name (~> 0.5)
19
+ json (2.6.3)
20
+ method_source (1.0.0)
21
+ mime-types (3.4.1)
22
+ mime-types-data (~> 3.2015)
23
+ mime-types-data (3.2023.0218.1)
24
+ netrc (0.11.0)
25
+ parallel (1.23.0)
26
+ parser (3.2.2.1)
27
+ ast (~> 2.4.1)
28
+ pry (0.14.2)
29
+ coderay (~> 1.1)
30
+ method_source (~> 1.0)
31
+ rainbow (3.1.1)
32
+ rake (13.0.6)
33
+ regexp_parser (2.8.0)
34
+ rest-client (2.1.0)
35
+ http-accept (>= 1.7.0, < 2.0)
36
+ http-cookie (>= 1.0.2, < 2.0)
37
+ mime-types (>= 1.16, < 4.0)
38
+ netrc (~> 0.8)
39
+ rexml (3.2.5)
40
+ rspec (3.12.0)
41
+ rspec-core (~> 3.12.0)
42
+ rspec-expectations (~> 3.12.0)
43
+ rspec-mocks (~> 3.12.0)
44
+ rspec-core (3.12.2)
45
+ rspec-support (~> 3.12.0)
46
+ rspec-expectations (3.12.3)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.12.0)
49
+ rspec-mocks (3.12.5)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.12.0)
52
+ rspec-support (3.12.0)
53
+ rubocop (1.51.0)
54
+ json (~> 2.3)
55
+ parallel (~> 1.10)
56
+ parser (>= 3.2.0.0)
57
+ rainbow (>= 2.2.2, < 4.0)
58
+ regexp_parser (>= 1.8, < 3.0)
59
+ rexml (>= 3.2.5, < 4.0)
60
+ rubocop-ast (>= 1.28.0, < 2.0)
61
+ ruby-progressbar (~> 1.7)
62
+ unicode-display_width (>= 2.4.0, < 3.0)
63
+ rubocop-ast (1.28.1)
64
+ parser (>= 3.2.1.0)
65
+ ruby-progressbar (1.13.0)
66
+ unf (0.1.4)
67
+ unf_ext
68
+ unf_ext (0.0.8.2)
69
+ unicode-display_width (2.4.2)
70
+
71
+ PLATFORMS
72
+ x86_64-darwin-22
73
+
74
+ DEPENDENCIES
75
+ liblab_the_one!
76
+ rake (~> 13.0)
77
+ rspec (~> 3.0)
78
+ rubocop (~> 1.21)
79
+
80
+ BUNDLED WITH
81
+ 2.4.12
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Monty Lennie
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,60 @@
1
+ # Liblab
2
+
3
+ This gem is an API wrapper for (the one api)[https://the-one-api.dev/].
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'liblab_the_one'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install pex_api
20
+
21
+ ## Usage
22
+ `Liblab::Movie::List.call()` will get a list of movies
23
+
24
+ `Liblab::Movie::List.call()` will retrieve a single movie
25
+
26
+ `Liblab::Movie::Get.call(movie_id)` will get quotes for a single movie
27
+
28
+ `Liblab::Quote::List.call()` will get a list of quotes
29
+
30
+ `Liblab::Quote::List.call({ limit: 5, page: 2, offset: 1})` will get a list but with pagination
31
+
32
+ `Liblab::Quote::Get.call(quote_id)` will retrieve an individual quote
33
+
34
+ Each class/method will have it's own parameters depending on the type of request and it's expected input parameters.
35
+
36
+ ### Setup
37
+
38
+ Add the following environment variables. The specific values can be found at https://the-one-api.dev/.
39
+
40
+ ```
41
+ LIBLAB_ACCESS_TOKEN=
42
+ ```
43
+
44
+ ## Development
45
+
46
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
47
+
48
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
49
+
50
+ ## Contributing
51
+
52
+ Bug reports and pull requests are welcome on GitHub at https://github.com/givesafe/pex_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the (code of conduct)[https://github.com/mlennie/montgomery-sdk/blob/master/CODE_OF_CONDUCT.md].
53
+
54
+ ## License
55
+
56
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
57
+
58
+ ## Code of Conduct
59
+
60
+ Everyone interacting in the PexApi project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the (code of conduct)[https://github.com/mlennie/montgomery-sdk/blob/master/CODE_OF_CONDUCT.md].
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,80 @@
1
+ require 'json'
2
+ require 'liblab/https'
3
+
4
+ module Liblab
5
+ module Client
6
+ class Base
7
+ METHODS = [:get, :post, :put, :delete].freeze
8
+ TYPES = [:token].freeze
9
+ API_URL = 'https://the-one-api.dev/v2'.freeze
10
+ DEFAULT_HEADERS = {
11
+ :Accept => 'application/json',
12
+ :'Content-Type' => 'application/json'
13
+ }.freeze
14
+
15
+ define_method(:get) do |path, headers={}|
16
+ call(_method: :get, path: path, headers: headers)
17
+ end
18
+
19
+ METHODS.each do |_method|
20
+ next if _method == :get
21
+ define_method(_method) do |path, params={}, headers={}|
22
+ call(_method: _method, path: path, params: params, headers: headers)
23
+ end
24
+ end
25
+
26
+ private
27
+
28
+ def build_path(path='')
29
+ return API_URL if path.empty?
30
+
31
+ API_URL + "/" + path
32
+ end
33
+
34
+ def build_headers(new_headers={})
35
+ DEFAULT_HEADERS.merge(token_header).merge(new_headers)
36
+ end
37
+
38
+ def token
39
+ ::Liblab.configuration.access_token
40
+ end
41
+
42
+ def token_header
43
+ { Authorization: "Bearer #{token}" }
44
+ end
45
+
46
+ def build_params(new_params={})
47
+ new_params.to_json
48
+ end
49
+
50
+ def call(_method: nil, path: nil, params: {}, headers: {})
51
+
52
+ if token.nil?
53
+ raise MissingRequiredConfig, "access token missing"
54
+ end
55
+
56
+ _path = build_path path
57
+ _params = build_params params
58
+ _headers = build_headers headers
59
+
60
+ begin
61
+ ::Liblab::Logger.log "Liblab method: #{_method}"
62
+ ::Liblab::Logger.log "Liblab path: #{_path}"
63
+ ::Liblab::Logger.log "Liblab params: #{_params}"
64
+ ::Liblab::Logger.log "Liblab headers: #{_headers}"
65
+ args = [_path]
66
+ args.push(_params) if [:post, :put].include?(_method)
67
+ args.push(_headers)
68
+
69
+ response = Liblab::Https.call(_method, *args)
70
+ if response.is_a?(RestClient::Response)
71
+ ::Liblab::Logger.log "Liblab response:: status: #{response.code} body: #{response.body}"
72
+ else
73
+ ::Liblab::Logger.log "Liblab response: #{response}"
74
+ end
75
+ response
76
+ end
77
+ end
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,12 @@
1
+ # lib/liblab/configuration.rb
2
+ require 'base64'
3
+
4
+ module Liblab
5
+ class Configuration
6
+ attr_accessor :access_token
7
+
8
+ def initialize
9
+ @access_token = ENV['LIBLAB_ACCESS_TOKEN'] || nil
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,25 @@
1
+ require 'rest-client'
2
+ require 'liblab/logger'
3
+
4
+ module Liblab
5
+ class Https
6
+
7
+ def self.call(_method, *args)
8
+ RestClient.send(_method, *args)
9
+ rescue RestClient::ExceptionWithResponse => e
10
+ ::Liblab::Logger.log "ERROR: #{e}"
11
+ e.response
12
+ rescue RestClient::Unauthorized => e
13
+ ::Liblab::Logger.log "ERROR: #{e.response}"
14
+ respond_with(400, e.response.body)
15
+ rescue RestClient::ServiceUnavailable => e
16
+ ::Liblab::Logger.log "ERROR: #{e.response}"
17
+ respond_with(400, e.response.body)
18
+ end
19
+
20
+ def self.respond_with(code, body)
21
+ error_struct = Struct.new(:code, :body)
22
+ error_struct.new(code, body)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,15 @@
1
+ module Liblab
2
+ class Logger
3
+ def self.log(message)
4
+ return if is_disabled?
5
+
6
+ puts message
7
+ end
8
+
9
+ private
10
+
11
+ def self.is_disabled?
12
+ ENV.fetch('API_LOGGER_ENABLED', 'true') == 'false'
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,13 @@
1
+ module Liblab
2
+ module Movie
3
+ class Get
4
+ def self.call(movie_id="")
5
+ if movie_id.empty?
6
+ raise MissingRequiredArgumentError, "movie_id is required"
7
+ end
8
+ _path = "movie/#{movie_id}"
9
+ ::Liblab::Client::Base.new.get(_path)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ module Liblab
2
+ module Movie
3
+ class GetQuotes
4
+ def self.call(movie_id="")
5
+ if movie_id.empty?
6
+ raise MissingRequiredArgumentError, "movie_id is required"
7
+ end
8
+ _path = "movie/#{movie_id}/quote"
9
+ ::Liblab::Client::Base.new.get(_path)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,10 @@
1
+ module Liblab
2
+ module Movie
3
+ class List
4
+ def self.call()
5
+ _path = "movie"
6
+ ::Liblab::Client::Base.new.get(_path)
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ module Liblab
2
+ module Quote
3
+ class Get
4
+ def self.call(quote_id="")
5
+ if quote_id.empty?
6
+ raise MissingRequiredArgumentError, "quote_id is required"
7
+ end
8
+ _path = "quote/#{quote_id}"
9
+ ::Liblab::Client::Base.new.get(_path)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,11 @@
1
+ module Liblab
2
+ module Quote
3
+ class List
4
+ def self.call(pagination={})
5
+ _path = "quote?limit=#{pagination[:limit]}&page=#{pagination[:page]}" +
6
+ "&offset=#{pagination[:offset]}"
7
+ ::Liblab::Client::Base.new.get(_path)
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Liblab
4
+ VERSION = "0.1.0"
5
+ end
data/lib/liblab.rb ADDED
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "pry"
4
+ require_relative "liblab/version"
5
+ require_relative "liblab/configuration"
6
+ require_relative "liblab/https"
7
+ require_relative "liblab/logger"
8
+ require_relative "liblab/client/base"
9
+ require_relative "liblab/movie/list"
10
+ require_relative "liblab/movie/get"
11
+ require_relative "liblab/movie/get_quotes"
12
+ require_relative "liblab/quote/list"
13
+ require_relative "liblab/quote/get"
14
+
15
+ module Liblab
16
+ class Error < StandardError; end
17
+ class MissingRequiredArgumentError < ArgumentError; end
18
+ class MissingRequiredConfig < StandardError; end
19
+
20
+ class << self
21
+ def configuration
22
+ @configuration ||= Configuration.new
23
+ end
24
+
25
+ def configure
26
+ yield(configuration)
27
+ end
28
+ end
29
+ end
data/sig/liblab.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Liblab
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: liblab_the_one
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Monty Lennie
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rest-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.14.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.14.2
41
+ description: Allows easy connection to liblab API
42
+ email:
43
+ - montylennie@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".rspec"
49
+ - ".rubocop.yml"
50
+ - CHANGELOG.md
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - Gemfile.lock
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - lib/liblab.rb
58
+ - lib/liblab/client/base.rb
59
+ - lib/liblab/configuration.rb
60
+ - lib/liblab/https.rb
61
+ - lib/liblab/logger.rb
62
+ - lib/liblab/movie/get.rb
63
+ - lib/liblab/movie/get_quotes.rb
64
+ - lib/liblab/movie/list.rb
65
+ - lib/liblab/quote/get.rb
66
+ - lib/liblab/quote/list.rb
67
+ - lib/liblab/version.rb
68
+ - sig/liblab.rbs
69
+ homepage: https://github.com/mlennie/montgomery-sdk
70
+ licenses:
71
+ - MIT
72
+ metadata:
73
+ allowed_push_host: https://rubygems.org/
74
+ homepage_uri: https://github.com/mlennie/montgomery-sdk
75
+ source_code_uri: https://github.com/mlennie/montgomery-sdk
76
+ changelog_uri: https://github.com/mlennie/montgomery-sdk
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 2.6.0
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.4.12
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: An SDK for liblab
96
+ test_files: []