spree_paypal_api_checkout 0.0.1 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -14
- data/Rakefile +1 -1
- data/app/views/spree/checkout/payment/_paypal_checkout.html.erb +1 -1
- data/config/routes.rb +0 -1
- data/lib/spree_paypal_api_checkout/engine.rb +1 -1
- data/lib/spree_paypal_api_checkout/version.rb +2 -2
- data/lib/spree_paypal_api_checkout.rb +2 -2
- data/script/rails +1 -1
- data/spree_paypal_api_checkout.gemspec +2 -2
- 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: 138ebb9bffcb77133a08404472042023464f25bebbc53df20837bb0046935705
|
4
|
+
data.tar.gz: 1305d8ace7290bfef2b259f36a6940d45ac90d2889fd81d24fe9d29195305fbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55a185e9e428feb1a585b3de92328dfaef08ae90d1cfc3f58eb57c81efc4a74b85881fea085fe27e7e34307963aa9124ad991b5c01f4874d88b6b1b825021baf
|
7
|
+
data.tar.gz: 29654cd7b99f07536c1fef392211065e18b878fadd2427ffd7691414f67cc1b0f19a2a7e3c11513e01313e1f5906cc846a66d7380e3960be859711f0d0235924
|
data/README.md
CHANGED
@@ -1,14 +1,10 @@
|
|
1
1
|
# Spree PayPal checkout
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/spree-contrib/better_spree_paypal_checkout.svg?branch=master)](https://travis-ci.org/spree-contrib/better_spree_paypal_checkout)
|
4
|
-
|
5
|
-
This is the official Paypal checkout extension for Spree.
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
5
|
1. Add this extension to your Gemfile with this line:
|
10
6
|
|
11
|
-
gem 'spree_paypal_checkout',
|
7
|
+
gem 'spree_paypal_checkout', '~> 0.0.4'
|
12
8
|
|
13
9
|
2. Install the gem using Bundler:
|
14
10
|
|
@@ -16,7 +12,7 @@ This is the official Paypal checkout extension for Spree.
|
|
16
12
|
|
17
13
|
3. Copy & run migrations
|
18
14
|
|
19
|
-
bundle exec
|
15
|
+
bundle exec rake railties:install:migrations
|
20
16
|
|
21
17
|
4. Restart your server
|
22
18
|
|
@@ -26,7 +22,7 @@ This is the official Paypal checkout extension for Spree.
|
|
26
22
|
|
27
23
|
#### PayPal
|
28
24
|
|
29
|
-
Go to [PayPal's Developer Website](https://developer.paypal.com/), sign in with your PayPal account, click "Applications" then "Sandbox Accounts" and create a new "Business" account.
|
25
|
+
Go to [PayPal's Developer Website](https://developer.paypal.com/), sign in with your PayPal account, click "Applications" then "Sandbox Accounts" and create a new "Business" account. There you will get your CLIENT ID and CLIENT SECRET KEY.
|
30
26
|
|
31
27
|
You will also need a "Personal" account to test the transactions on your site. Create this in the same way, finding the account information under "Profile" as well. You may need to set a password in order to be able to log in to PayPal's sandbox for this user.
|
32
28
|
|
@@ -38,18 +34,13 @@ In Spree, go to the admin backend, click "Configuration" and then "Payment Metho
|
|
38
34
|
|
39
35
|
#### PayPal
|
40
36
|
|
41
|
-
|
42
|
-
|
43
|
-
If you are unable to find it, then follow [PayPal's own documentation](https://developer.paypal.com/webapps/developer/docs/classic/api/apiCredentials/).
|
37
|
+
Go to [PayPal's Developer Website](https://developer.paypal.com/), sign in with your PayPal account, click "Applications" then "Sandbox Accounts" and create a new "Business" account. There you will get your CLIENT ID and CLIENT SECRET KEY.
|
44
38
|
|
45
|
-
|
39
|
+
### Spree Setup
|
46
40
|
|
47
41
|
Same as sandbox setup, but change "Server" from "sandbox" to "live".
|
48
42
|
|
49
43
|
## Configuration
|
50
44
|
This Spree extension supports *some* of those. If your favourite is not here, then please submit an issue about it, or better still a patch to add it in.
|
51
45
|
|
52
|
-
|
53
46
|
**Must** be an absolute path to the image.
|
54
|
-
|
55
|
-
## Caveats
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<div id="paypal-button-container" class="paypal-button-container"></div>
|
2
2
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
3
|
-
<script type="text/javascript" src="https://www.paypal.com/sdk/js?client-id=<%= payment_method.
|
3
|
+
<script type="text/javascript" src="https://www.paypal.com/sdk/js?client-id=<%= payment_method.preferred_api_key %>¤cy=<%= @order.currency %>"></script>
|
4
4
|
|
5
5
|
<script type="text/javascript">
|
6
6
|
paypal.Buttons({
|
data/config/routes.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
Spree::Core::Engine.add_routes do
|
2
2
|
post '/paypal_checkout', :to => "paypal_checkout#express", :as => :paypal_checkout
|
3
|
-
post '/paypal_checkout/authorize', :to => "paypal_checkout#authorize", :as => :authorize_paypal_checkout
|
4
3
|
post '/paypal_checkout/confirm', :to => "paypal_checkout#confirm", :as => :confirm_paypal_checkout
|
5
4
|
get '/paypal_checkout/cancel', :to => "paypal_checkout#cancel", :as => :cancel_paypal_checkout
|
6
5
|
get '/paypal_checkout/notify', :to => "paypal_checkout#notify", :as => :notify_paypal_checkout
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = '0.0.
|
1
|
+
module SpreePaypalApiCheckout
|
2
|
+
VERSION = '0.0.4'
|
3
3
|
end
|
data/script/rails
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
4
|
-
ENGINE_PATH = File.expand_path('../../lib/
|
4
|
+
ENGINE_PATH = File.expand_path('../../lib/spree_paypal_api_checkout/engine', __FILE__)
|
5
5
|
|
6
6
|
require 'rails/all'
|
7
7
|
require 'rails/engine/commands'
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "spree_paypal_api_checkout".freeze
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.4"
|
4
4
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
6
6
|
s.require_paths = ["lib".freeze]
|
7
7
|
s.authors = ["Spree Commerce".freeze]
|
8
8
|
s.date = "2022-02-22"
|
9
|
-
s.description = "Adds PayPal
|
9
|
+
s.description = "Adds PayPal API Checkout as a Payment Method to Spree Commerce".freeze
|
10
10
|
s.email = "gems@spreecommerce.com".freeze
|
11
11
|
s.files = [".gitignore".freeze, "Gemfile".freeze, "README.md".freeze, "Rakefile".freeze, "app/assets/javascripts/spree/backend/spree_paypal_checkout.js".freeze, "app/assets/javascripts/spree/frontend/spree_paypal_checkout.js".freeze, "app/assets/stylesheets/spree/backend/spree_paypal_checkout.css".freeze, "app/assets/stylesheets/spree/frontend/spree_paypal_checkout.css".freeze, "app/controllers/spree/admin/payments_controller_decorator.rb".freeze, "app/controllers/spree/admin/paypal_checkout_payments_controller.rb".freeze, "app/controllers/spree/paypal_checkout_controller.rb".freeze, "app/models/spree/gateway/pay_pal_checkout.rb".freeze, "app/models/spree/paypal_api_checkout.rb".freeze, "app/views/spree/admin/payments/_paypal_complete.html.erb".freeze, "app/views/spree/admin/payments/paypal_refund.html.erb".freeze, "app/views/spree/admin/payments/source_forms/_paypal.html.erb".freeze, "app/views/spree/admin/payments/source_views/_paypal.html.erb".freeze, "app/views/spree/checkout/payment/_paypal_checkout.html.erb".freeze, "config/locales/de.yml".freeze, "config/locales/en.yml".freeze, "config/locales/es.yml".freeze, "config/locales/it.yml".freeze, "config/locales/pl.yml".freeze, "config/locales/pt.yml".freeze, "config/routes.rb".freeze, "db/migrate/20220620042734_create_spree_paypal_api_checkouts.rb".freeze, "lib/generators/spree_paypal_api_checkout/install/install_generator.rb".freeze, "lib/spree_paypal_api_checkout.rb".freeze, "lib/spree_paypal_api_checkout/engine.rb".freeze, "lib/spree_paypal_api_checkout/version.rb".freeze, "script/rails".freeze, "spree_paypal_api_checkout.gemspec".freeze]
|
12
12
|
s.homepage = "http://www.spreecommerce.com".freeze
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree_paypal_api_checkout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Spree Commerce
|
@@ -344,7 +344,7 @@ dependencies:
|
|
344
344
|
- - ">="
|
345
345
|
- !ruby/object:Gem::Version
|
346
346
|
version: '0'
|
347
|
-
description: Adds PayPal
|
347
|
+
description: Adds PayPal API Checkout as a Payment Method to Spree Commerce
|
348
348
|
email: gems@spreecommerce.com
|
349
349
|
executables: []
|
350
350
|
extensions: []
|