workarea-paypal 2.0.9 → 2.0.10
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 +10 -0
- data/Rakefile +4 -4
- data/config/initializers/workarea.rb +2 -2
- data/lib/workarea/paypal/version.rb +1 -1
- data/test/dummy/config/initializers/session_store.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a19c19fe2e5a52d7846562f6f74b48d2600e16e8e8315d961456192081e5de53
|
|
4
|
+
data.tar.gz: 8d17dc9f1089e9d6654f7851ffa2ddaa5de8a1321b0bd0ff3774d86cf3fed159
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e9cf056c4fc25de66a040f62dda8458e5ec518180ab8ed193a860f465887b34d2d7a8c25106d55759562c3a909bbe3f09c1f7eae691f6102e1c2332b05ad6f7
|
|
7
|
+
data.tar.gz: 79eec0fa8ff19668acf17265db14f9c2a22271e98b02d7014fe7c7ae250e53350e06f04f8864a9f6c5c4ffb209ec07ce119c4224b39d7c31b029b60db941aa62
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
Workarea Paypal 2.0.10 (2020-05-26)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Update Paypal BN code
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Ben Crouse
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
Workarea Paypal 2.0.8 (2019-08-21)
|
|
2
12
|
--------------------------------------------------------------------------------
|
|
3
13
|
|
data/Rakefile
CHANGED
|
@@ -39,10 +39,10 @@ desc "Release version #{Workarea::Paypal::VERSION} of the gem"
|
|
|
39
39
|
task :release do
|
|
40
40
|
host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
Rake::Task['workarea:changelog'].execute
|
|
43
|
+
system 'git add CHANGELOG.md'
|
|
44
|
+
system 'git commit -m "Update CHANGELOG"'
|
|
45
|
+
system 'git push origin HEAD'
|
|
46
46
|
|
|
47
47
|
system "git tag -a v#{Workarea::Paypal::VERSION} -m 'Tagging #{Workarea::Paypal::VERSION}'"
|
|
48
48
|
system 'git push --tags'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Workarea.config.tender_types << :paypal
|
|
2
2
|
|
|
3
3
|
# Gateway application_id is sent as PayPal BN code for revenue sharing
|
|
4
|
-
# '
|
|
5
|
-
ActiveMerchant::Billing::PaypalGateway.application_id = '
|
|
4
|
+
# 'Workarea_SP' should be used for all WebLinc installations
|
|
5
|
+
ActiveMerchant::Billing::PaypalGateway.application_id = 'Workarea_SP'
|
|
6
6
|
|
|
7
7
|
Workarea::Paypal.auto_configure_gateway
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-paypal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bcrouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
|
-
rubygems_version: 3.0.
|
|
170
|
+
rubygems_version: 3.0.3
|
|
171
171
|
signing_key:
|
|
172
172
|
specification_version: 4
|
|
173
173
|
summary: PayPal integration for the Workarea Commerce Platform
|