workarea-paypal 2.0.10 → 2.0.11
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/Rakefile +4 -4
- data/lib/workarea/paypal.rb +3 -1
- data/lib/workarea/paypal/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb461fa4a26a3e893172087b72ef906458026cbfff783499835c16a68bb7b53d
|
|
4
|
+
data.tar.gz: 125d2faf78909e21650b8f952b97bd2ad6e2d3571b86c9f15d0929d93b1ade8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1054d274b3657424751b7319fad84b9a387bfa71a3f9e1324dfa989207ee6bc34cf6d36d0ecb5d2204157171cedb5b8f70b8fbaaa760b3f4a926cb3bc45f29c
|
|
7
|
+
data.tar.gz: 445f49f7c4bec4ac4ea712360325bffaeb6806ffd4a70fba55c6e1c391b7ab52071339a393e72a2e9d39dec688491e631b3f78bfec2dd0097b3cf44b03a64a75
|
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
|
-
Rake::Task['workarea:changelog'].execute
|
|
43
|
-
system 'git add CHANGELOG.md'
|
|
44
|
-
system 'git commit -m "Update CHANGELOG"'
|
|
45
|
-
system 'git push origin HEAD'
|
|
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'
|
data/lib/workarea/paypal.rb
CHANGED
|
@@ -15,7 +15,9 @@ module Workarea
|
|
|
15
15
|
def self.auto_configure_gateway
|
|
16
16
|
if Rails.application.secrets.paypal.present?
|
|
17
17
|
self.gateway = ActiveMerchant::Billing::PaypalExpressGateway.new(
|
|
18
|
-
Rails.application.secrets.paypal.deep_symbolize_keys
|
|
18
|
+
Rails.application.secrets.paypal.deep_symbolize_keys.merge(
|
|
19
|
+
button_source: 'Workarea_SP'
|
|
20
|
+
)
|
|
19
21
|
)
|
|
20
22
|
elsif gateway.blank?
|
|
21
23
|
self.gateway = ActiveMerchant::Billing::BogusGateway.new
|
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.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bcrouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|