paygate-ruby 0.1.11 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Rakefile +2 -2
- data/data/cdbn.20230401.unl.xlsx +0 -0
- data/data/config.yml +3337 -2734
- data/lib/paygate/action_view/form_helper.rb +159 -0
- data/lib/paygate/aes.rb +37 -35
- data/lib/paygate/aes_ctr.rb +58 -55
- data/lib/paygate/configuration.rb +7 -3
- data/lib/paygate/member.rb +4 -1
- data/lib/paygate/profile.rb +5 -2
- data/lib/paygate/response.rb +10 -8
- data/lib/paygate/transaction.rb +11 -9
- data/lib/paygate/version.rb +3 -1
- data/lib/paygate-ruby.rb +2 -47
- data/lib/paygate.rb +46 -0
- metadata +11 -55
- data/data/card_bin_20191001.xlsx +0 -0
- data/lib/paygate/helpers/form_helper.rb +0 -155
- data/spec/integration/paygate_spec.rb +0 -9
- data/spec/spec_helper.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 867c69bb85ba649dad9ea824991ca04590144909b2a6a6ee0fc084ff5ba72ba8
|
4
|
+
data.tar.gz: 85c7e574a2dcd7dc3adb2e9e111628eec9c199cf45727aebec9b48ebf6217f62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c889a068601299a78a9c20d2eeccb96c397ad4acde7d396f5c0d6412f69526ac3b9a4abe62c8dfaea2053b92a878dcde81b7ca2b2c9cd17c42ed8c3c85bbbcb7
|
7
|
+
data.tar.gz: ef08826c863b4f9bbef90fc9020193ee200457f7675b2734d3482c1c689ed43e0fba82eeb70592155a087cb4520c2330024dd065bd1db1972ccd7d151defcf88
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,18 @@
|
|
2
2
|
|
3
3
|
## Next
|
4
4
|
|
5
|
+
## 0.2.1 - 2023-04-26
|
6
|
+
|
7
|
+
- [PR#11](https://github.com/tablecheck/paygate-ruby/pull/11) Deep freeze constants. ([johnnyshields](https://github.com/johnnyshields))
|
8
|
+
|
9
|
+
## 0.2.0 - 2023-04-26
|
10
|
+
|
11
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename Paygate::FormHelper to Paygate::Rails::FormHelper. ([johnnyshields](https://github.com/johnnyshields))
|
12
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Do not include Paygate::FormHelper in ActionView::Base. ([johnnyshields](https://github.com/johnnyshields))
|
13
|
+
- [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))
|
14
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename data config YAML keys. ([johnnyshields](https://github.com/johnnyshields))
|
15
|
+
- [PR#10](https://github.com/tablecheck/paygate-ruby/pull/10) Add Rubocop and fix compliance issues. ([johnnyshields](https://github.com/johnnyshields))
|
16
|
+
|
5
17
|
## 0.1.11 - 2022-05-13
|
6
18
|
|
7
19
|
- [PR#7](https://github.com/tablecheck/paygate-ruby/pull/7) Fix missed files in gem package. ([johnnyshields](https://github.com/johnnyshields))
|
data/Rakefile
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require 'bundler/gem_tasks'
|
Binary file
|