Sha256: 4889d8fad013d3ca823afdffe8e4f3976a9c197ff1daf70133c8f390a525b730

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

# frozen_string_literal: true

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

# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise'

gem 'factory_bot', '> 4.10.0'

case ENV['DB']
when 'mysql'
  gem 'mysql2'
when 'postgresql'
  gem 'pg'
else
  gem 'sqlite3'
end

gemspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solidus_dev_support-0.3.0 lib/solidus_dev_support/templates/extension/Gemfile