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
14 changes: 10 additions & 4 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
lib/square_legacy/
lib/square_legacy.rb
Gemfile
Rakefile
.rubocop.yml
.gitignore
test/
.github/workflows
README.md
Gemfile.lock
square.gemspec
lib/square/file_param.rb
custom.gemfile.rb

# Pagination is currently broken for endpoints where the page token is not submitted via a query param
# Manually fixed pagination bugs in:
lib/square/inventory/client.rb
lib/square/transfer_orders/client.rb

# Iterator does not handle nil item fields (when API returns nil instead of empty array for no items)
# Manually added nil checks to avoid calling .shift/.empty? on nil
lib/square/internal/iterators/item_iterator.rb
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
SQUARE_SANDBOX_TOKEN: ${{ secrets.SQUARE_SANDBOX_TOKEN }}
strategy:
matrix:
ruby-version: ['3.2', '3.3', '3.4']
ruby-version: ['3.3', '3.4']
bundler-version: ['2.7']

steps:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
pkg
*.gem
CLAUDE.md
vendor/
.bundle/
Loading