Skip to content

Commit

Permalink
Autoformat Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mamhoff committed May 26, 2020
1 parent 59474dd commit 3061c1e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
source 'https://rubygems.org'
source "https://rubygems.org"

alchemy_branch = ENV.fetch('ALCHEMY_BRANCH', 'master')
alchemy_branch = ENV.fetch("ALCHEMY_BRANCH", "master")
gem "alchemy_cms", github: "AlchemyCMS/alchemy_cms", branch: alchemy_branch

# Specify your gem's dependencies in alchemy-solidus.gemspec
gemspec

group :test do
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2' if ENV['DB'] == 'mysql'
gem 'pg', '~> 1.0' if ENV['DB'] == 'postgresql'
if ENV['TRAVIS']
gem "codeclimate-test-reporter", '~> 1.0', require: false
gem "sqlite3" if ENV["DB"].nil? || ENV["DB"] == "sqlite"
gem "mysql2" if ENV["DB"] == "mysql"
gem "pg", "~> 1.0" if ENV["DB"] == "postgresql"
if ENV["TRAVIS"]
gem "codeclimate-test-reporter", "~> 1.0", require: false
end
end

0 comments on commit 3061c1e

Please sign in to comment.