solidus_bactracs 4.0.0 → 4.0.1
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/.github/workflows/release.yml +1 -1
- data/Gemfile +2 -1
- data/lib/solidus_bactracs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f13c6c0d278050dca753693999fb984a2d729f4748ee6c9f4b97237ed1e0914
|
|
4
|
+
data.tar.gz: 64db235fe780f3941ecd187248684d25b8b442198ac54dc1e5883dffbc2f0164
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e816870efae436762996d01dd9c4130575be4707ae0246ebd74673986a8ab398cfcb7553cb2a3a5d45896e854d077aafc5e35e690e8b6528110bcfbc76e3a01
|
|
7
|
+
data.tar.gz: 4e061b051bea5668cc6e0036a113c3f20a05e7e481b467ee2240ad1f4e9f8316b43d77dc841d1fa360df18762b530e24f2de6ee9b96e5756e22df24d21e55173
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
- uses: actions/checkout@v2
|
|
24
24
|
- uses: ruby/setup-ruby@v1.111.0
|
|
25
25
|
with:
|
|
26
|
-
ruby-version: '
|
|
26
|
+
ruby-version: '3.1.2' # Not needed with a .ruby-version file
|
|
27
27
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
28
28
|
- uses: fac/ruby-gem-setup-credentials-action@v2
|
|
29
29
|
with:
|
data/Gemfile
CHANGED
|
@@ -4,7 +4,8 @@ source 'https://rubygems.org'
|
|
|
4
4
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
5
5
|
|
|
6
6
|
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
|
|
7
|
-
gem 'solidus', github: 'solidusio/solidus', branch: branch
|
|
7
|
+
#gem 'solidus', github: 'solidusio/solidus', branch: branch
|
|
8
|
+
gem 'solidus_core', '~> 4.x'
|
|
8
9
|
|
|
9
10
|
# Needed to help Bundler figure out how to resolve dependencies,
|
|
10
11
|
# otherwise it takes forever to resolve them.
|