Skip to content

Commit

Permalink
Uncomment Mysql gems and remove unwanted byebug gem in Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bricesanchez committed Oct 15, 2019
1 parent 188ee57 commit 0b8cb01
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions Gemfile
Expand Up @@ -28,12 +28,12 @@ unless ENV['TRAVIS']
gem 'sqlite3', platform: :ruby
end

# if !ENV['TRAVIS'] || ENV['DB'] == 'mysql'
# group :mysql do
# gem 'activerecord-jdbcmysql-adapter', '>= 1.3.0.rc1', platform: :jruby
# gem 'mysql2', '~> 0.4', :platform => :ruby
# end
# end
if !ENV['TRAVIS'] || ENV['DB'] == 'mysql'
group :mysql do
gem 'activerecord-jdbcmysql-adapter', '>= 1.3.0.rc1', platform: :jruby
gem 'mysql2', '~> 0.4', :platform => :ruby
end
end

if !ENV['TRAVIS'] || ENV['DB'] == 'postgresql'
group :postgres, :postgresql do
Expand All @@ -42,10 +42,6 @@ if !ENV['TRAVIS'] || ENV['DB'] == 'postgresql'
end
end

group :development do
gem 'byebug'
end

group :test do
gem 'refinerycms-testing', path: './testing'
gem 'generator_spec', '~> 0.9.3'
Expand Down

0 comments on commit 0b8cb01

Please sign in to comment.