Skip to content

Commit

Permalink
(#32) update to solidus 4.0.1
Browse files Browse the repository at this point in the history
* solidus 4.0

* github ci ruby 3.1.2

* solidus core v4

* v4.0.1 for docs updates
  • Loading branch information
NewAlexandria committed May 31, 2024
1 parent 5e47f53 commit fb4c5e8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/[email protected]
with:
ruby-version: '2.7.2' # Not needed with a .ruby-version file
ruby-version: '3.1.2' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- uses: fac/ruby-gem-setup-credentials-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 2.7.2
3.1.2
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 2.7.2
ruby 3.1.2
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem 'solidus', github: 'solidusio/solidus', branch: branch
#gem 'solidus', github: 'solidusio/solidus', branch: branch
gem 'solidus_core', '~> 4.x'

# Needed to help Bundler figure out how to resolve dependencies,
# otherwise it takes forever to resolve them.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
This gem integrates [Bactracs](http://www.bactracs.com) with [Solidus](http://solidus.io). It
enables your Solidus system to push shipment RMAs to the system.

> Currently this requires Solidus ~ 4.x
> This integration was cloned from [spree_shipstation](https://github.com/DynamoMTL/spree_shipstation) to provide some consistency with other Solidus<-->Shipping related patterns.
## Installation
Expand Down
2 changes: 1 addition & 1 deletion lib/solidus_bactracs/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SolidusBactracs
VERSION = '3.5.2'
VERSION = '4.0.1'
end
2 changes: 1 addition & 1 deletion solidus_bactracs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency 'httparty', '~> 0.18'
spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 4']
spec.add_dependency 'solidus_core', ['>= 4.0'] # , '< 4']
spec.add_dependency 'solidus_support', '~> 0.5'

spec.add_development_dependency 'rails-controller-testing'
Expand Down

0 comments on commit fb4c5e8

Please sign in to comment.