Sha256: ce63ae2a8a449f1dd24f8fc93712613381b8a1fb5323801410d5358e6ea3797a
Contents?: true
Size: 720 Bytes
Versions: 4
Compression:
Stored size: 720 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_core', github: 'solidusio/solidus', branch: branch case ENV['DB'] when 'mysql' gem 'mysql2' when 'postgresql' gem 'pg' else gem 'sqlite3' end gemspec # There is an issue with Sprockets 4 not accepting a custom path for # the assets manifest, which doesn't play well with in-memory dummy # apps such as the one we use in this gem. # A fix was provided for sprockets-rails[1] but it was not accepted # yet. # [1]: rails/sprockets-rails#446 # # Please do not remove this line until we have a solution. gem 'sprockets', '~> 3'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
solidus_support-0.9.1 | Gemfile |
solidus_support-0.9.0 | Gemfile |
solidus_support-0.8.1 | Gemfile |
solidus_support-0.8.0 | Gemfile |