paygate-ruby 0.1.11 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -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 +43 -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: cc96b203160cf2fa57d2b27b19085ee0cdff34baea3590fb964fd41b7c5e31fb
|
4
|
+
data.tar.gz: aa26d42416921f5c5f8b4d33b5d83cd35ce214b6517e94cdecc9fc6134dc2198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39d8a1447e89945d39f9fc29061ef59f96fcb75e057e43a21b475365336978f3e18b5a684991592c1b251f21122b4274c2a79fff7cb6dc29e5edf0350cf21702
|
7
|
+
data.tar.gz: 167b0dde36de872c6f8608333194c108f3753d48aade42af1415f25087894bc05ddd7983386ac80efcd5befd3ad1cb0055032f724618ddb01a9a4a41b6f89b00
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
## Next
|
4
4
|
|
5
|
+
## 0.2.0 - 2023-04-26
|
6
|
+
|
7
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename Paygate::FormHelper to Paygate::Rails::FormHelper. ([johnnyshields](https://github.com/johnnyshields))
|
8
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Do not include Paygate::FormHelper in ActionView::Base. ([johnnyshields](https://github.com/johnnyshields))
|
9
|
+
- [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))
|
10
|
+
- [PR#9](https://github.com/tablecheck/paygate-ruby/pull/9) Rename data config YAML keys. ([johnnyshields](https://github.com/johnnyshields))
|
11
|
+
- [PR#10](https://github.com/tablecheck/paygate-ruby/pull/10) Add Rubocop and fix compliance issues. ([johnnyshields](https://github.com/johnnyshields))
|
12
|
+
|
5
13
|
## 0.1.11 - 2022-05-13
|
6
14
|
|
7
15
|
- [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
|