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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98985217343936a5399899ea8dc078c367a17ff6273085f058d7a087562b1055
4
- data.tar.gz: ba15d3a67dd887c6f27a47e1ec65215efe4b6e452db4c3f23170203f62cedf9c
3
+ metadata.gz: 138ebb9bffcb77133a08404472042023464f25bebbc53df20837bb0046935705
4
+ data.tar.gz: 1305d8ace7290bfef2b259f36a6940d45ac90d2889fd81d24fe9d29195305fbd
5
5
  SHA512:
6
- metadata.gz: 47d76efd57342fc54b5185899e3313d608504a39d0f8feaf1b9690caf571b43e8a33e4dfdb4961607b1a041de0041a1f5ce1ba64c1097c7c871a0651c5c2502d
7
- data.tar.gz: 8bdfde4b573f0301596bc6afbbfdb77adbfd44770bce1315508cc75e2d2077dade85362c1e85b7d1869407d8613f4631a70694ef9b1c145534e5b897f3c0e604
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', github: 'spree-contrib/better_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 rails g spree_paypal_api_checkout:install
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. Once the account is created, click on the triangle next to its email address, then "Profile". The "API Credentials" tab will provide your API credentials (probably). If this tab is blank, try refreshing the page.
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
- Sign in to PayPal, then click "Profile" and then (under "Account Information" on the left), click "API Access". On this page, select "Option 2" and click "View API Signature". The username, password and signature will be displayed on this screen.
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
- #### Spree Setup
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
@@ -16,6 +16,6 @@ end
16
16
 
17
17
  desc 'Generates a dummy app for testing'
18
18
  task :test_app do
19
- ENV['LIB_NAME'] = 'spree_paypal_express'
19
+ ENV['LIB_NAME'] = 'spree_paypal_checkout'
20
20
  Rake::Task['extension:test_app'].invoke
21
21
  end
@@ -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.api_key %>&currency=<%= @order.currency %>"></script>
3
+ <script type="text/javascript" src="https://www.paypal.com/sdk/js?client-id=<%= payment_method.preferred_api_key %>&currency=<%= @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,4 +1,4 @@
1
- module SpreePaypalCheckout
1
+ module SpreePaypalApiCheckout
2
2
  class Engine < Rails::Engine
3
3
  require 'spree/core'
4
4
  isolate_namespace Spree
@@ -1,3 +1,3 @@
1
- module SpreePayPalCheckout
2
- VERSION = '0.0.1'
1
+ module SpreePaypalApiCheckout
2
+ VERSION = '0.0.4'
3
3
  end
@@ -1,5 +1,5 @@
1
1
  require 'spree_core'
2
2
  require 'spree_extension'
3
- require 'spree_paypal_checkout/version'
4
- require 'spree_paypal_checkout/engine'
3
+ require 'spree_paypal_api_checkout/version'
4
+ require 'spree_paypal_api_checkout/engine'
5
5
  require 'sass/rails'
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/spree_paypal_express/engine', __FILE__)
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.1"
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 Express as a Payment Method to Spree Commerce".freeze
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.1
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 Express as a Payment Method to Spree Commerce
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: []