Skip to content

Commit

Permalink
Various refactors: (#8)
Browse files Browse the repository at this point in the history
Various refactors:
- Rename Paygate::FormHelper to Paygate::Rails::FormHelper
- Do not include Paygate::FormHelper in ActionView::Base
- Update BIN list. Note BINs can now be a flexible number of digits
- Rename data config YAML keys
- Add specs for AES classes
  • Loading branch information
johnnyshields authored Apr 26, 2023
1 parent 54a6656 commit 3804065
Show file tree
Hide file tree
Showing 17 changed files with 3,656 additions and 2,772 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby-version: [2.1.9, 2.2.10, 2.3.8, 2.4.6, 2.5.8, 2.6.6, 2.7.2, 3.0.1, jruby-9.1.17.0, jruby-9.2.17.0, truffleruby]
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2, jruby-9.4, truffleruby]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -22,4 +22,4 @@ jobs:
run: bundle install

- name: Run tests
run: bundle exec rake
run: bundle exec rspec
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Next

## 0.2.0 - 2023-04-26

- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename Paygate::FormHelper to Paygate::Rails::FormHelper. ([johnnyshields](https://github.com/johnnyshields))
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Do not include Paygate::FormHelper in ActionView::Base. ([johnnyshields](https://github.com/johnnyshields))
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Update BIN list. Note BINs can now be a flexible number of digits. ([johnnyshields](https://github.com/johnnyshields))
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename data config YAML keys. ([johnnyshields](https://github.com/johnnyshields))

## 0.1.11 - 2022-05-13

- [PR#7](https://github.com/tablecheck/paygate-ruby/pull/7) Fix missed files in gem package. ([johnnyshields](https://github.com/johnnyshields))
Expand Down
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
source 'https://rubygems.org'

group :development, :test do
gem 'rake'
end

group :test do
gem 'rspec'
gem 'timecop'
end

gemspec
2 changes: 0 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
require 'bundler/gem_tasks'

task default: :spec
Binary file removed data/card_bin_20191001.xlsx
Binary file not shown.
Binary file added data/cdbn.20230401.unl.xlsx
Binary file not shown.
Loading

0 comments on commit 3804065

Please sign in to comment.