Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ lib/square_legacy/
lib/square_legacy.rb
Rakefile
.gitignore
test/
test/square_legacy
test/square/integration
.github/workflows
README.md
lib/square/file_param.rb
custom.gemfile.rb
Gemfile.custom
custom.gemspec.rb

# Pagination is currently broken for endpoints where the page token is not submitted via a query param
# Manually fixed pagination bugs in:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ group :test, :development do
end

# Load custom Gemfile configuration if it exists
custom_gemfile = File.join(__dir__, "custom.gemfile.rb")
custom_gemfile = File.join(__dir__, "Gemfile.custom")
eval_gemfile(custom_gemfile) if File.exist?(custom_gemfile)
6 changes: 2 additions & 4 deletions custom.gemfile.rb → Gemfile.custom
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
# overwritten by the generator.

# Example usage:
# gem 'custom-gem', '~> 1.0'
#
# group :development do
# gem 'debug-gem', '~> 2.0'
# group :test, :development do
# gem 'custom-gem', '~> 2.0'
# end

# Add your custom gem dependencies here
Expand Down
38 changes: 19 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ PATH
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
apimatic_core (0.3.20)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
apimatic_core (0.3.21)
apimatic_core_interfaces (~> 0.2.0)
certifi (~> 2018.1, >= 2018.01.18)
faraday-multipart (~> 1.0)
Expand All @@ -32,8 +32,8 @@ GEM
bigdecimal (3.3.1)
certifi (2018.01.18)
coderay (1.1.3)
connection_pool (2.5.4)
crack (1.0.0)
connection_pool (2.5.5)
crack (1.0.1)
bigdecimal
rexml
faraday (2.14.0)
Expand All @@ -49,28 +49,28 @@ GEM
faraday (>= 0.8)
faraday-multipart (1.1.1)
multipart-post (~> 2.0)
faraday-net_http (3.4.1)
net-http (>= 0.5.0)
faraday-net_http (3.4.2)
net-http (~> 0.5)
faraday-net_http_persistent (2.3.1)
faraday (~> 2.5)
net-http-persistent (>= 4.0.4, < 5)
faraday-retry (2.3.2)
faraday (~> 2.0)
hashdiff (1.2.1)
json (2.15.1)
json (2.17.1)
language_server-protocol (3.17.0.5)
lint_roller (1.1.0)
logger (1.7.0)
method_source (1.1.0)
minitest (5.26.0)
minitest (5.26.2)
minitest-proveit (1.0.0)
minitest (> 5, < 7)
minitest-rg (5.3.0)
minitest (~> 5.0)
multipart-post (2.4.1)
mutex_m (0.3.0)
net-http (0.6.0)
uri
net-http (0.8.0)
uri (>= 0.11.1)
net-http-persistent (4.0.6)
connection_pool (~> 2.2, >= 2.2.4)
nokogiri (1.18.10-aarch64-linux-gnu)
Expand All @@ -90,20 +90,20 @@ GEM
nokogiri (1.18.10-x86_64-linux-musl)
racc (~> 1.4)
parallel (1.27.0)
parser (3.3.9.0)
parser (3.3.10.0)
ast (~> 2.4.1)
racc
prism (1.6.0)
pry (0.15.2)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (6.0.2)
public_suffix (7.0.0)
racc (1.8.1)
rainbow (3.1.1)
rake (13.3.0)
rake (13.3.1)
regexp_parser (2.11.3)
rexml (3.4.4)
rubocop (1.81.1)
rubocop (1.81.7)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
Expand All @@ -114,7 +114,7 @@ GEM
rubocop-ast (>= 1.47.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.47.1)
rubocop-ast (1.48.0)
parser (>= 3.3.7.2)
prism (~> 1.4)
rubocop-minitest (0.38.2)
Expand All @@ -125,12 +125,12 @@ GEM
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.1.0)
uri (1.0.4)
webmock (3.25.1)
uri (1.1.1)
webmock (3.26.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zlib (3.2.1)
zlib (3.2.2)

PLATFORMS
aarch64-linux-gnu
Expand Down
Loading