my_api_client 0.15.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +169 -95
  3. data/.dependabot/config.yml +2 -5
  4. data/.rubocop.yml +5 -1
  5. data/.rubocop_challenge.yml +1 -0
  6. data/.rubocop_todo.yml +53 -1
  7. data/CHANGELOG.md +171 -0
  8. data/Gemfile +0 -3
  9. data/Gemfile.lock +70 -64
  10. data/README.jp.md +97 -24
  11. data/bin/console +4 -0
  12. data/example/api_clients/application_api_client.rb +2 -10
  13. data/example/api_clients/my_rest_api_client.rb +9 -3
  14. data/gemfiles/{rails_4.2.gemfile → rails_6.1.gemfile} +1 -1
  15. data/lib/generators/rails/USAGE +1 -1
  16. data/lib/generators/rails/api_client_generator.rb +6 -0
  17. data/lib/generators/rails/templates/api_client.rb.erb +1 -1
  18. data/lib/generators/rails/templates/application_api_client.rb.erb +0 -11
  19. data/lib/generators/rspec/USAGE +1 -1
  20. data/lib/generators/rspec/api_client_generator.rb +6 -0
  21. data/lib/generators/rspec/templates/api_client_spec.rb.erb +23 -16
  22. data/lib/my_api_client.rb +5 -0
  23. data/lib/my_api_client/base.rb +4 -9
  24. data/lib/my_api_client/default_error_handlers.rb +64 -0
  25. data/lib/my_api_client/error_handling.rb +3 -4
  26. data/lib/my_api_client/error_handling/generator.rb +23 -7
  27. data/lib/my_api_client/errors.rb +1 -53
  28. data/lib/my_api_client/errors/api_limit_error.rb +6 -0
  29. data/lib/my_api_client/errors/client_error.rb +93 -0
  30. data/lib/my_api_client/errors/network_error.rb +43 -0
  31. data/lib/my_api_client/errors/server_error.rb +42 -0
  32. data/lib/my_api_client/params/params.rb +1 -3
  33. data/lib/my_api_client/request.rb +2 -2
  34. data/lib/my_api_client/request/basic.rb +1 -3
  35. data/lib/my_api_client/request/executor.rb +1 -1
  36. data/lib/my_api_client/version.rb +1 -1
  37. data/my_api/Gemfile.lock +89 -87
  38. data/my_api/app/controllers/pagination_controller.rb +1 -1
  39. data/my_api/spec/controllers/rest_controller_spec.rb +23 -5
  40. data/my_api_client.gemspec +2 -2
  41. data/rails_app/rails_5.2/.rspec +3 -0
  42. data/rails_app/rails_5.2/Gemfile +17 -0
  43. data/rails_app/rails_5.2/Gemfile.lock +174 -0
  44. data/rails_app/rails_5.2/README.md +24 -0
  45. data/rails_app/rails_5.2/Rakefile +8 -0
  46. data/rails_app/rails_5.2/app/controllers/application_controller.rb +4 -0
  47. data/rails_app/rails_5.2/app/jobs/application_job.rb +4 -0
  48. data/rails_app/rails_5.2/bin/bundle +5 -0
  49. data/rails_app/rails_5.2/bin/rails +6 -0
  50. data/rails_app/rails_5.2/bin/rake +6 -0
  51. data/rails_app/rails_5.2/bin/setup +27 -0
  52. data/rails_app/rails_5.2/bin/update +27 -0
  53. data/rails_app/rails_5.2/config.ru +7 -0
  54. data/rails_app/rails_5.2/config/application.rb +37 -0
  55. data/rails_app/rails_5.2/config/boot.rb +6 -0
  56. data/rails_app/rails_5.2/config/credentials.yml.enc +1 -0
  57. data/rails_app/rails_5.2/config/environment.rb +7 -0
  58. data/rails_app/rails_5.2/config/environments/development.rb +41 -0
  59. data/rails_app/rails_5.2/config/environments/production.rb +70 -0
  60. data/rails_app/rails_5.2/config/environments/test.rb +38 -0
  61. data/rails_app/rails_5.2/config/initializers/application_controller_renderer.rb +9 -0
  62. data/rails_app/rails_5.2/config/initializers/backtrace_silencers.rb +8 -0
  63. data/rails_app/rails_5.2/config/initializers/cors.rb +17 -0
  64. data/rails_app/rails_5.2/config/initializers/filter_parameter_logging.rb +6 -0
  65. data/rails_app/rails_5.2/config/initializers/inflections.rb +17 -0
  66. data/rails_app/rails_5.2/config/initializers/mime_types.rb +5 -0
  67. data/rails_app/rails_5.2/config/initializers/wrap_parameters.rb +11 -0
  68. data/rails_app/rails_5.2/config/locales/en.yml +33 -0
  69. data/rails_app/rails_5.2/config/routes.rb +5 -0
  70. data/rails_app/rails_5.2/config/spring.rb +8 -0
  71. data/rails_app/rails_5.2/public/robots.txt +1 -0
  72. data/rails_app/rails_5.2/spec/rails_helper.rb +14 -0
  73. data/rails_app/rails_5.2/spec/spec_helper.rb +13 -0
  74. data/rails_app/rails_6.0/.rspec +3 -0
  75. data/rails_app/rails_6.0/Gemfile +17 -0
  76. data/rails_app/rails_6.0/Gemfile.lock +190 -0
  77. data/rails_app/rails_6.0/README.md +24 -0
  78. data/rails_app/rails_6.0/Rakefile +8 -0
  79. data/rails_app/rails_6.0/app/controllers/application_controller.rb +4 -0
  80. data/rails_app/rails_6.0/app/jobs/application_job.rb +9 -0
  81. data/rails_app/rails_6.0/bin/rails +6 -0
  82. data/rails_app/rails_6.0/bin/rake +6 -0
  83. data/rails_app/rails_6.0/bin/setup +27 -0
  84. data/rails_app/rails_6.0/config.ru +7 -0
  85. data/rails_app/rails_6.0/config/application.rb +39 -0
  86. data/rails_app/rails_6.0/config/boot.rb +6 -0
  87. data/rails_app/rails_6.0/config/credentials.yml.enc +1 -0
  88. data/rails_app/rails_6.0/config/environment.rb +7 -0
  89. data/rails_app/rails_6.0/config/environments/development.rb +39 -0
  90. data/rails_app/rails_6.0/config/environments/production.rb +90 -0
  91. data/rails_app/rails_6.0/config/environments/test.rb +41 -0
  92. data/rails_app/rails_6.0/config/initializers/application_controller_renderer.rb +9 -0
  93. data/rails_app/rails_6.0/config/initializers/backtrace_silencers.rb +8 -0
  94. data/rails_app/rails_6.0/config/initializers/cors.rb +17 -0
  95. data/rails_app/rails_6.0/config/initializers/filter_parameter_logging.rb +6 -0
  96. data/rails_app/rails_6.0/config/initializers/inflections.rb +17 -0
  97. data/rails_app/rails_6.0/config/initializers/mime_types.rb +5 -0
  98. data/rails_app/rails_6.0/config/initializers/wrap_parameters.rb +11 -0
  99. data/rails_app/rails_6.0/config/locales/en.yml +33 -0
  100. data/rails_app/rails_6.0/config/routes.rb +5 -0
  101. data/rails_app/rails_6.0/config/spring.rb +8 -0
  102. data/rails_app/rails_6.0/public/robots.txt +1 -0
  103. data/rails_app/rails_6.0/spec/rails_helper.rb +14 -0
  104. data/rails_app/rails_6.0/spec/spec_helper.rb +13 -0
  105. data/rails_app/rails_6.1/.gitattributes +8 -0
  106. data/rails_app/rails_6.1/.gitignore +28 -0
  107. data/rails_app/rails_6.1/.rspec +3 -0
  108. data/rails_app/rails_6.1/Gemfile +17 -0
  109. data/rails_app/rails_6.1/Gemfile.lock +197 -0
  110. data/rails_app/rails_6.1/README.md +24 -0
  111. data/rails_app/rails_6.1/Rakefile +6 -0
  112. data/rails_app/rails_6.1/app/controllers/application_controller.rb +4 -0
  113. data/rails_app/rails_6.1/app/controllers/concerns/.keep +0 -0
  114. data/rails_app/rails_6.1/app/javascript/.keep +0 -0
  115. data/rails_app/rails_6.1/app/models/application_record.rb +5 -0
  116. data/rails_app/rails_6.1/app/models/concerns/.keep +0 -0
  117. data/rails_app/rails_6.1/bin/bundle +114 -0
  118. data/rails_app/rails_6.1/bin/rails +4 -0
  119. data/rails_app/rails_6.1/bin/rake +4 -0
  120. data/rails_app/rails_6.1/bin/setup +33 -0
  121. data/rails_app/rails_6.1/config.ru +6 -0
  122. data/rails_app/rails_6.1/config/application.rb +42 -0
  123. data/rails_app/rails_6.1/config/boot.rb +5 -0
  124. data/rails_app/rails_6.1/config/credentials.yml.enc +1 -0
  125. data/rails_app/rails_6.1/config/database.yml +25 -0
  126. data/rails_app/rails_6.1/config/environment.rb +7 -0
  127. data/rails_app/rails_6.1/config/environments/development.rb +59 -0
  128. data/rails_app/rails_6.1/config/environments/production.rb +97 -0
  129. data/rails_app/rails_6.1/config/environments/test.rb +51 -0
  130. data/rails_app/rails_6.1/config/initializers/application_controller_renderer.rb +9 -0
  131. data/rails_app/rails_6.1/config/initializers/backtrace_silencers.rb +10 -0
  132. data/rails_app/rails_6.1/config/initializers/cors.rb +17 -0
  133. data/rails_app/rails_6.1/config/initializers/filter_parameter_logging.rb +8 -0
  134. data/rails_app/rails_6.1/config/initializers/inflections.rb +17 -0
  135. data/rails_app/rails_6.1/config/initializers/mime_types.rb +5 -0
  136. data/rails_app/rails_6.1/config/initializers/wrap_parameters.rb +16 -0
  137. data/rails_app/rails_6.1/config/locales/en.yml +33 -0
  138. data/rails_app/rails_6.1/config/routes.rb +5 -0
  139. data/rails_app/rails_6.1/db/seeds.rb +8 -0
  140. data/rails_app/rails_6.1/lib/tasks/.keep +0 -0
  141. data/rails_app/rails_6.1/public/robots.txt +1 -0
  142. data/rails_app/rails_6.1/spec/rails_helper.rb +14 -0
  143. data/rails_app/rails_6.1/spec/spec_helper.rb +13 -0
  144. data/rails_app/rails_6.1/tmp/.keep +0 -0
  145. data/rails_app/rails_6.1/tmp/pids/.keep +0 -0
  146. data/rails_app/rails_6.1/vendor/.keep +0 -0
  147. metadata +119 -7
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # In the development environment your application's code is reloaded on
7
+ # every request. This slows down response time but is perfect for development
8
+ # since you don't have to restart the web server when you make code changes.
9
+ config.cache_classes = false
10
+
11
+ # Do not eager load code on boot.
12
+ config.eager_load = false
13
+
14
+ # Show full error reports.
15
+ config.consider_all_requests_local = true
16
+
17
+ # Enable/disable caching. By default caching is disabled.
18
+ # Run rails dev:cache to toggle caching.
19
+ if Rails.root.join('tmp', 'caching-dev.txt').exist?
20
+ config.action_controller.perform_caching = true
21
+
22
+ config.cache_store = :memory_store
23
+ config.public_file_server.headers = {
24
+ 'Cache-Control' => "public, max-age=#{2.days.to_i}",
25
+ }
26
+ else
27
+ config.action_controller.perform_caching = false
28
+
29
+ config.cache_store = :null_store
30
+ end
31
+
32
+ # Print deprecation notices to the Rails logger.
33
+ config.active_support.deprecation = :log
34
+
35
+ # Raises error for missing translations
36
+ # config.action_view.raise_on_missing_translations = true
37
+
38
+ # Use an evented file watcher to asynchronously detect changes in source code,
39
+ # routes, locales, etc. This feature depends on the listen gem.
40
+ # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
41
+ end
@@ -0,0 +1,70 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # Code is not reloaded between requests.
7
+ config.cache_classes = true
8
+
9
+ # Eager load code on boot. This eager loads most of Rails and
10
+ # your application in memory, allowing both threaded web servers
11
+ # and those relying on copy on write to perform better.
12
+ # Rake tasks automatically ignore this option for performance.
13
+ config.eager_load = true
14
+
15
+ # Full error reports are disabled and caching is turned on.
16
+ config.consider_all_requests_local = false
17
+ config.action_controller.perform_caching = true
18
+
19
+ # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
20
+ # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
21
+ # config.require_master_key = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
28
+ # config.action_controller.asset_host = 'http://assets.example.com'
29
+
30
+ # Specifies the header that your server uses for sending files.
31
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
32
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
33
+
34
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
35
+ # config.force_ssl = true
36
+
37
+ # Use the lowest log level to ensure availability of diagnostic information
38
+ # when problems arise.
39
+ config.log_level = :debug
40
+
41
+ # Prepend all log lines with the following tags.
42
+ config.log_tags = [:request_id]
43
+
44
+ # Use a different cache store in production.
45
+ # config.cache_store = :mem_cache_store
46
+
47
+ # Use a real queuing backend for Active Job (and separate queues per environment)
48
+ # config.active_job.queue_adapter = :resque
49
+ # config.active_job.queue_name_prefix = "rails_5_2_#{Rails.env}"
50
+
51
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
52
+ # the I18n.default_locale when a translation cannot be found).
53
+ config.i18n.fallbacks = true
54
+
55
+ # Send deprecation notices to registered listeners.
56
+ config.active_support.deprecation = :notify
57
+
58
+ # Use default logging formatter so that PID and timestamp are not suppressed.
59
+ config.log_formatter = ::Logger::Formatter.new
60
+
61
+ # Use a different logger for distributed setups.
62
+ # require 'syslog/logger'
63
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
64
+
65
+ if ENV['RAILS_LOG_TO_STDOUT'].present?
66
+ logger = ActiveSupport::Logger.new($stdout)
67
+ logger.formatter = config.log_formatter
68
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
69
+ end
70
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # The test environment is used exclusively to run your application's
7
+ # test suite. You never need to work with it otherwise. Remember that
8
+ # your test database is "scratch space" for the test suite and is wiped
9
+ # and recreated between test runs. Don't rely on the data there!
10
+ config.cache_classes = true
11
+
12
+ # Do not eager load code on boot. This avoids loading your whole application
13
+ # just for the purpose of running a single test. If you are using a tool that
14
+ # preloads Rails for running tests, you may have to set it to true.
15
+ config.eager_load = false
16
+
17
+ # Configure public file server for tests with Cache-Control for performance.
18
+ config.public_file_server.enabled = true
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}",
21
+ }
22
+
23
+ # Show full error reports and disable caching.
24
+ config.consider_all_requests_local = true
25
+ config.action_controller.perform_caching = false
26
+
27
+ # Raise exceptions instead of rendering exception templates.
28
+ config.action_dispatch.show_exceptions = false
29
+
30
+ # Disable request forgery protection in test environment.
31
+ config.action_controller.allow_forgery_protection = false
32
+
33
+ # Print deprecation notices to the stderr.
34
+ config.active_support.deprecation = :stderr
35
+
36
+ # Raises error for missing translations
37
+ # config.action_view.raise_on_missing_translations = true
38
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # ActiveSupport::Reloader.to_prepare do
5
+ # ApplicationController.renderer.defaults.merge!(
6
+ # http_host: 'example.org',
7
+ # https: false
8
+ # )
9
+ # end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
5
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
6
+
7
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
8
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # Avoid CORS issues when API is called from the frontend app.
5
+ # Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests.
6
+
7
+ # Read more: https://github.com/cyu/rack-cors
8
+
9
+ # Rails.application.config.middleware.insert_before 0, Rack::Cors do
10
+ # allow do
11
+ # origins 'example.com'
12
+ #
13
+ # resource '*',
14
+ # headers: :any,
15
+ # methods: [:get, :post, :put, :patch, :delete, :options, :head]
16
+ # end
17
+ # end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Configure sensitive parameters which will be filtered from the log file.
6
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # Add new inflection rules using the following format. Inflections
5
+ # are locale specific, and you may define rules for as many different
6
+ # locales as you wish. All of these examples are active by default:
7
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
8
+ # inflect.plural /^(ox)$/i, '\1en'
9
+ # inflect.singular /^(ox)en/i, '\1'
10
+ # inflect.irregular 'person', 'people'
11
+ # inflect.uncountable %w( fish sheep )
12
+ # end
13
+
14
+ # These inflection rules are supported but not enabled by default:
15
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
16
+ # inflect.acronym 'RESTful'
17
+ # end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # Add new mime types for use in respond_to blocks:
5
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # This file contains settings for ActionController::ParamsWrapper which
6
+ # is enabled by default.
7
+
8
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
9
+ ActiveSupport.on_load(:action_controller) do
10
+ wrap_parameters format: [:json]
11
+ end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.routes.draw do
4
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ %w[
4
+ .ruby-version
5
+ .rbenv-vars
6
+ tmp/restart.txt
7
+ tmp/caching-dev.txt
8
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+ ENV['RAILS_ENV'] ||= 'test'
5
+ require File.expand_path('../config/environment', __dir__)
6
+ abort('The Rails environment is running in production mode!') if Rails.env.production?
7
+ require 'rspec/rails'
8
+ require 'my_api_client/rspec'
9
+
10
+ RSpec.configure do |config|
11
+ config.use_active_record = false
12
+ config.infer_spec_type_from_file_location!
13
+ config.filter_rails_from_backtrace!
14
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.configure do |config|
4
+ config.expect_with :rspec do |expectations|
5
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
6
+ end
7
+
8
+ config.mock_with :rspec do |mocks|
9
+ mocks.verify_partial_doubles = true
10
+ end
11
+
12
+ config.shared_context_metadata_behavior = :apply_to_host_groups
13
+ end
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
+
6
+ gem 'bootsnap', '>= 1.4.2', require: false
7
+ gem 'my_api_client', path: '../..'
8
+ gem 'rails', '~> 6.0.3'
9
+
10
+ group :development, :test do
11
+ gem 'byebug', platforms: %i[mri mingw x64_mingw]
12
+ gem 'rspec-rails'
13
+ end
14
+
15
+ group :development do
16
+ gem 'spring'
17
+ end
@@ -0,0 +1,190 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ my_api_client (0.17.0)
5
+ activesupport (>= 5.2.0)
6
+ faraday (>= 0.17.1)
7
+ jsonpath
8
+ sawyer (>= 0.8.2)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actioncable (6.0.3.3)
14
+ actionpack (= 6.0.3.3)
15
+ nio4r (~> 2.0)
16
+ websocket-driver (>= 0.6.1)
17
+ actionmailbox (6.0.3.3)
18
+ actionpack (= 6.0.3.3)
19
+ activejob (= 6.0.3.3)
20
+ activerecord (= 6.0.3.3)
21
+ activestorage (= 6.0.3.3)
22
+ activesupport (= 6.0.3.3)
23
+ mail (>= 2.7.1)
24
+ actionmailer (6.0.3.3)
25
+ actionpack (= 6.0.3.3)
26
+ actionview (= 6.0.3.3)
27
+ activejob (= 6.0.3.3)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.0.3.3)
31
+ actionview (= 6.0.3.3)
32
+ activesupport (= 6.0.3.3)
33
+ rack (~> 2.0, >= 2.0.8)
34
+ rack-test (>= 0.6.3)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.0.3.3)
38
+ actionpack (= 6.0.3.3)
39
+ activerecord (= 6.0.3.3)
40
+ activestorage (= 6.0.3.3)
41
+ activesupport (= 6.0.3.3)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.0.3.3)
44
+ activesupport (= 6.0.3.3)
45
+ builder (~> 3.1)
46
+ erubi (~> 1.4)
47
+ rails-dom-testing (~> 2.0)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.0.3.3)
50
+ activesupport (= 6.0.3.3)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.0.3.3)
53
+ activesupport (= 6.0.3.3)
54
+ activerecord (6.0.3.3)
55
+ activemodel (= 6.0.3.3)
56
+ activesupport (= 6.0.3.3)
57
+ activestorage (6.0.3.3)
58
+ actionpack (= 6.0.3.3)
59
+ activejob (= 6.0.3.3)
60
+ activerecord (= 6.0.3.3)
61
+ marcel (~> 0.3.1)
62
+ activesupport (6.0.3.3)
63
+ concurrent-ruby (~> 1.0, >= 1.0.2)
64
+ i18n (>= 0.7, < 2)
65
+ minitest (~> 5.1)
66
+ tzinfo (~> 1.1)
67
+ zeitwerk (~> 2.2, >= 2.2.2)
68
+ addressable (2.7.0)
69
+ public_suffix (>= 2.0.2, < 5.0)
70
+ bootsnap (1.4.8)
71
+ msgpack (~> 1.0)
72
+ builder (3.2.4)
73
+ byebug (11.1.3)
74
+ concurrent-ruby (1.1.7)
75
+ crass (1.0.6)
76
+ diff-lcs (1.4.4)
77
+ erubi (1.9.0)
78
+ faraday (1.3.0)
79
+ faraday-net_http (~> 1.0)
80
+ multipart-post (>= 1.2, < 3)
81
+ ruby2_keywords
82
+ faraday-net_http (1.0.0)
83
+ globalid (0.4.2)
84
+ activesupport (>= 4.2.0)
85
+ i18n (1.8.5)
86
+ concurrent-ruby (~> 1.0)
87
+ jsonpath (1.1.0)
88
+ multi_json
89
+ loofah (2.7.0)
90
+ crass (~> 1.0.2)
91
+ nokogiri (>= 1.5.9)
92
+ mail (2.7.1)
93
+ mini_mime (>= 0.1.1)
94
+ marcel (0.3.3)
95
+ mimemagic (~> 0.3.2)
96
+ method_source (1.0.0)
97
+ mimemagic (0.3.5)
98
+ mini_mime (1.0.2)
99
+ mini_portile2 (2.5.0)
100
+ minitest (5.14.2)
101
+ msgpack (1.3.3)
102
+ multi_json (1.15.0)
103
+ multipart-post (2.1.1)
104
+ nio4r (2.5.4)
105
+ nokogiri (1.11.0)
106
+ mini_portile2 (~> 2.5.0)
107
+ racc (~> 1.4)
108
+ public_suffix (4.0.6)
109
+ racc (1.5.2)
110
+ rack (2.2.3)
111
+ rack-test (1.1.0)
112
+ rack (>= 1.0, < 3)
113
+ rails (6.0.3.3)
114
+ actioncable (= 6.0.3.3)
115
+ actionmailbox (= 6.0.3.3)
116
+ actionmailer (= 6.0.3.3)
117
+ actionpack (= 6.0.3.3)
118
+ actiontext (= 6.0.3.3)
119
+ actionview (= 6.0.3.3)
120
+ activejob (= 6.0.3.3)
121
+ activemodel (= 6.0.3.3)
122
+ activerecord (= 6.0.3.3)
123
+ activestorage (= 6.0.3.3)
124
+ activesupport (= 6.0.3.3)
125
+ bundler (>= 1.3.0)
126
+ railties (= 6.0.3.3)
127
+ sprockets-rails (>= 2.0.0)
128
+ rails-dom-testing (2.0.3)
129
+ activesupport (>= 4.2.0)
130
+ nokogiri (>= 1.6)
131
+ rails-html-sanitizer (1.3.0)
132
+ loofah (~> 2.3)
133
+ railties (6.0.3.3)
134
+ actionpack (= 6.0.3.3)
135
+ activesupport (= 6.0.3.3)
136
+ method_source
137
+ rake (>= 0.8.7)
138
+ thor (>= 0.20.3, < 2.0)
139
+ rake (13.0.1)
140
+ rspec-core (3.9.2)
141
+ rspec-support (~> 3.9.3)
142
+ rspec-expectations (3.9.2)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.9.0)
145
+ rspec-mocks (3.9.1)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.9.0)
148
+ rspec-rails (4.0.1)
149
+ actionpack (>= 4.2)
150
+ activesupport (>= 4.2)
151
+ railties (>= 4.2)
152
+ rspec-core (~> 3.9)
153
+ rspec-expectations (~> 3.9)
154
+ rspec-mocks (~> 3.9)
155
+ rspec-support (~> 3.9)
156
+ rspec-support (3.9.3)
157
+ ruby2_keywords (0.0.2)
158
+ sawyer (0.8.2)
159
+ addressable (>= 2.3.5)
160
+ faraday (> 0.8, < 2.0)
161
+ spring (2.1.1)
162
+ sprockets (4.0.2)
163
+ concurrent-ruby (~> 1.0)
164
+ rack (> 1, < 3)
165
+ sprockets-rails (3.2.2)
166
+ actionpack (>= 4.0)
167
+ activesupport (>= 4.0)
168
+ sprockets (>= 3.0.0)
169
+ thor (1.0.1)
170
+ thread_safe (0.3.6)
171
+ tzinfo (1.2.7)
172
+ thread_safe (~> 0.1)
173
+ websocket-driver (0.7.3)
174
+ websocket-extensions (>= 0.1.0)
175
+ websocket-extensions (0.1.5)
176
+ zeitwerk (2.4.0)
177
+
178
+ PLATFORMS
179
+ ruby
180
+
181
+ DEPENDENCIES
182
+ bootsnap (>= 1.4.2)
183
+ byebug
184
+ my_api_client!
185
+ rails (~> 6.0.3)
186
+ rspec-rails
187
+ spring
188
+
189
+ BUNDLED WITH
190
+ 2.1.4