Skip to content

Commit 9023710

Browse files
authored
Merge pull request #219 from gsmendoza/gsmendoza/eng-336-fix-solidus_auth_devise-build
Fix build
2 parents b02f891 + e2503aa commit 9023710

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.circleci/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
version: 2.1
22

33
orbs:
4+
browser-tools: circleci/[email protected]
5+
46
# Always take the latest version of the orb, this allows us to
57
# run specs against Solidus supported versions only without the need
68
# to change this configuration every time a Solidus version is released
@@ -11,10 +13,12 @@ jobs:
1113
run-specs-with-postgres:
1214
executor: solidusio_extensions/postgres
1315
steps:
16+
- browser-tools/install-browser-tools
1417
- solidusio_extensions/run-tests
1518
run-specs-with-mysql:
1619
executor: solidusio_extensions/mysql
1720
steps:
21+
- browser-tools/install-browser-tools
1822
- solidusio_extensions/run-tests
1923

2024
workflows:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.project
88
.sass-cache
99
coverage
10+
Gemfile-local
1011
Gemfile.lock
1112
tmp
1213
nbproject

Gemfile

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

66
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
7-
gem 'solidus', github: 'solidusio/solidus', branch: branch
87

9-
# Needed to help Bundler figure out how to resolve dependencies,
10-
# otherwise it takes forever to resolve them.
11-
# See https://github.com/bundler/bundler/issues/6677
12-
gem 'rails', '>0.a'
8+
git "https://github.com/solidusio/solidus.git", branch: branch do
9+
gem 'solidus_api'
10+
gem 'solidus_backend'
11+
gem 'solidus_core'
12+
gem 'solidus_frontend'
13+
gem 'solidus_sample'
14+
end
15+
16+
gem 'rails', ENV.fetch('RAILS_VERSION', nil)
1317

1418
case ENV['DB']
1519
when 'mysql'

0 commit comments

Comments
 (0)