solidus_stripe 5.0.0.rc.2 → 5.0.0.rc.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80590bf550dd5c471e94cfd6edd9d0ca246c650db87741939a288db52b509b23
4
- data.tar.gz: 30ff110815833b15746669b8b3db0c0ff995baeaac6f74cea09fa20db13ef46d
3
+ metadata.gz: 0c9bf8c605fc9cad30e48531cb1ae8fe5d286cf018d9a235d02b084918d3561f
4
+ data.tar.gz: 2b89a9ae1c1fb44693c2294c5e624def08b143b4af81d2de110ab0494355d6b9
5
5
  SHA512:
6
- metadata.gz: 289adffe4dd54fcf0d862d5c618db0730339125bc9b7f8c137c9050d2e93f653e57e2613943d0f94a3a188e5798c0e1783d7990794437fc89bcb386a7a1112a5
7
- data.tar.gz: bd46f58b38a8b1a6ad858d0403927497c19ae993371702850b01c8ab8a71378d710eee0dae8d03b155c4c6b4b8dd8a81924cdad8385a3d0a1d70526709df5e11
6
+ metadata.gz: e85fca9d82120ec9ff7c59ce2c23138b355022a9ad0d104d12d24987ecb144e7f73e9d215a5702155a2f6966d4c62443ebd11c25aa33f4b6b4b8e9225b70223b
7
+ data.tar.gz: 8ff3a19647b68be7f41dc5ca408d3b0898a36c7771096e5c5469a09ece4779a18cad0d54ee555482755b06b06d3b6f33af0c62c6384edfb879faa643ccacc255
data/.circleci/config.yml CHANGED
@@ -62,7 +62,7 @@ jobs:
62
62
  bin/dummy-app
63
63
  environment:
64
64
  FRONTEND: starter
65
- SOLIDUS_BRANCH: master
65
+ SOLIDUS_BRANCH: main
66
66
  - save_cache:
67
67
  key: solidus-stripe-gems-v1-<<parameters.ruby>>-{{ checksum "/tmp/.tool-versions" }}
68
68
  paths:
data/README.md CHANGED
@@ -215,7 +215,7 @@ In order to map these concepts SolidusStripe will match states in a slightly une
215
215
  Reference:
216
216
 
217
217
  - https://stripe.com/docs/payments/intents?intent=payment
218
- - https://github.com/solidusio/solidus/blob/master/core/lib/spree/core/state_machines/payment.rb
218
+ - https://github.com/solidusio/solidus/blob/main/core/lib/spree/core/state_machines/payment.rb
219
219
 
220
220
  ### Deferred payment confirmation
221
221
 
data/bin/dummy-app CHANGED
@@ -22,7 +22,7 @@ echo "gem 'simplecov', '~> 0.22', require: false" >> Gemfile
22
22
  echo "gem 'simplecov-cobertura', require: false" >> Gemfile
23
23
  unbundled bundle install
24
24
 
25
- unbundled bundle add solidus --github solidusio/solidus --branch "${SOLIDUS_BRANCH:-master}" --version '> 0.a'
25
+ unbundled bundle add solidus --github solidusio/solidus --branch "${SOLIDUS_BRANCH:-main}" --version '> 0.a'
26
26
  unbundled bundle exec rake db:drop db:create
27
27
  unbundled bundle exec rails generate solidus:install --auto-accept --payment-method=none --no-seed --no-sample "$@"
28
28
  unbundled bundle add $extension_name --path ..
data/bin/rails-new CHANGED
@@ -39,7 +39,7 @@ else
39
39
 
40
40
  cd "$app_path"
41
41
  unbundled bundle add listen --group development
42
- unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-master}" --version '> 0.a'
42
+ unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-main}" --version '> 0.a'
43
43
  unbundled bundle exec rake db:drop db:create
44
44
  unbundled bundle exec rails generate solidus:install --auto-accept --payment-method=none
45
45
  cd "${root_path}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusStripe
4
- VERSION = '5.0.0.rc.2'
4
+ VERSION = '5.0.0.rc.3'
5
5
  end
@@ -3,7 +3,7 @@
3
3
  require 'solidus_starter_frontend_spec_helper'
4
4
 
5
5
  module SolidusStripe::CheckoutTestHelper
6
- include SolidusStarterFrontend::SystemHelpers
6
+ include SolidusStarterFrontend::System::CheckoutHelpers
7
7
  def self.included(base)
8
8
  base.include Devise::Test::IntegrationHelpers
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.rc.2
4
+ version: 5.0.0.rc.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-08 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core