solidus_paypal_commerce_platform 1.0.1 → 1.0.2
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/.circleci/config.yml +9 -7
- data/.rubocop.yml +1 -1
- data/bin/dummy-app +1 -1
- data/bin/sandbox +2 -2
- data/lib/solidus_paypal_commerce_platform/version.rb +1 -1
- data/solidus_paypal_commerce_platform.gemspec +1 -1
- data/spec/solidus_paypal_commerce_platform_spec_helper.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: 52b33d94b00346b5e6fff7332c78346ef52ebda98eed3fa84bf0a616fa0206d2
|
|
4
|
+
data.tar.gz: ea980d6f80e1a1676a7ed4e0f834be086950db3b485f1f7785d10868849c09fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de6ce6d4659464c08125eab39fbf56ead1e57d4f9f1082c658146ec3b7dcd37c7ab67fdf0bba946122906a9a9ccb134921af15595bc62774f6fbb57f2ba18dad
|
|
7
|
+
data.tar.gz: e004971bf9e3743dd3931f436b52b79317bad7888a43eb84dad8e4014cd8c9a1e166572b4d1a2e4eacb97c8f9bba4161e9f36e0b9ef557261a106ef97bd1fc8e
|
data/.circleci/config.yml
CHANGED
|
@@ -20,7 +20,7 @@ commands:
|
|
|
20
20
|
sudo apt-get update
|
|
21
21
|
sudo apt-get install -yq libvips-dev
|
|
22
22
|
- solidusio_extensions/test-branch:
|
|
23
|
-
branch:
|
|
23
|
+
branch: main
|
|
24
24
|
command: |
|
|
25
25
|
export FRONTEND=starter
|
|
26
26
|
sudo gem update --system
|
|
@@ -33,26 +33,28 @@ jobs:
|
|
|
33
33
|
run-specs-with-postgres:
|
|
34
34
|
executor:
|
|
35
35
|
name: solidusio_extensions/postgres
|
|
36
|
-
ruby_version: '3.
|
|
36
|
+
ruby_version: '3.2'
|
|
37
37
|
steps:
|
|
38
38
|
- test-with-starter-frontend
|
|
39
39
|
|
|
40
40
|
run-specs-with-mysql:
|
|
41
41
|
executor:
|
|
42
42
|
name: solidusio_extensions/mysql
|
|
43
|
-
ruby_version: '3.
|
|
43
|
+
ruby_version: '3.1'
|
|
44
44
|
steps:
|
|
45
45
|
- test-with-starter-frontend
|
|
46
46
|
|
|
47
47
|
run-specs-with-sqlite:
|
|
48
48
|
executor:
|
|
49
49
|
name: solidusio_extensions/sqlite
|
|
50
|
-
ruby_version: '
|
|
50
|
+
ruby_version: '3.0'
|
|
51
51
|
steps:
|
|
52
52
|
- test-with-starter-frontend
|
|
53
53
|
|
|
54
54
|
lint-code:
|
|
55
|
-
executor:
|
|
55
|
+
executor:
|
|
56
|
+
name: solidusio_extensions/sqlite-memory
|
|
57
|
+
ruby_version: '3.0'
|
|
56
58
|
steps:
|
|
57
59
|
- solidusio_extensions/lint-code
|
|
58
60
|
|
|
@@ -64,14 +66,14 @@ workflows:
|
|
|
64
66
|
- run-specs-with-sqlite
|
|
65
67
|
- lint-code
|
|
66
68
|
|
|
67
|
-
"Weekly run specs against
|
|
69
|
+
"Weekly run specs against main":
|
|
68
70
|
triggers:
|
|
69
71
|
- schedule:
|
|
70
72
|
cron: "0 0 * * 4" # every Thursday
|
|
71
73
|
filters:
|
|
72
74
|
branches:
|
|
73
75
|
only:
|
|
74
|
-
-
|
|
76
|
+
- main
|
|
75
77
|
jobs:
|
|
76
78
|
- run-specs-with-postgres
|
|
77
79
|
- run-specs-with-mysql
|
data/.rubocop.yml
CHANGED
data/bin/dummy-app
CHANGED
|
@@ -28,7 +28,7 @@ if [ ! -d "dummy-app" ]; then
|
|
|
28
28
|
fi
|
|
29
29
|
|
|
30
30
|
cd ./dummy-app
|
|
31
|
-
unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-
|
|
31
|
+
unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-main}" --version '> 0.a'
|
|
32
32
|
unbundled bundle exec rake db:drop db:create
|
|
33
33
|
unbundled bundle exec rails generate solidus:install --auto-accept --payment-method=none --no-seed --no-sample "$@"
|
|
34
34
|
unbundled bundle add $extension_name --path ..
|
data/bin/sandbox
CHANGED
|
@@ -22,7 +22,7 @@ if [ ! -z $SOLIDUS_BRANCH ]
|
|
|
22
22
|
then
|
|
23
23
|
BRANCH=$SOLIDUS_BRANCH
|
|
24
24
|
else
|
|
25
|
-
BRANCH="
|
|
25
|
+
BRANCH="main"
|
|
26
26
|
fi
|
|
27
27
|
|
|
28
28
|
extension_name="solidus_paypal_commerce_platform"
|
|
@@ -47,7 +47,7 @@ if [ ! -d "sandbox" ]; then
|
|
|
47
47
|
fi
|
|
48
48
|
|
|
49
49
|
cd ./sandbox
|
|
50
|
-
unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-
|
|
50
|
+
unbundled bundle add solidus --github solidusio/solidus --branch "${BRANCH:-main}" --version '> 0.a'
|
|
51
51
|
unbundled bundle exec rake db:drop db:create
|
|
52
52
|
unbundled bundle exec rails generate solidus:install --payment-method=none --auto-accept "$@"
|
|
53
53
|
unbundled bundle add ${extension_name} --path '../'
|
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.metadata['changelog_uri'] = 'https://github.com/solidusio/solidus_paypal_commerce_platform/releases'
|
|
18
18
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
19
19
|
|
|
20
|
-
spec.required_ruby_version = Gem::Requirement.new('>=
|
|
20
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')
|
|
21
21
|
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_paypal_commerce_platform
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Denny
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-07-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: deface
|
|
@@ -273,7 +273,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
273
273
|
requirements:
|
|
274
274
|
- - ">="
|
|
275
275
|
- !ruby/object:Gem::Version
|
|
276
|
-
version: '
|
|
276
|
+
version: '3.0'
|
|
277
277
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
278
278
|
requirements:
|
|
279
279
|
- - ">="
|