From d0f293de6133751251644fcc1abd59bd7ab1a85c Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 30 Nov 2023 13:45:02 -0500 Subject: Need mysql for prod --- Gemfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 0baa41c..032e576 100644 --- a/Gemfile +++ b/Gemfile @@ -63,6 +63,14 @@ group :development do # Speed up commands on slow machines / big apps [https://github.com/rails/spring] # gem "spring" + + # Use Capistrano for deployment + gem 'capistrano', '~> 3.0', require: false + gem 'capistrano-rvm', require: false + gem 'capistrano-rails', require: false + gem 'capistrano-bundler', require: false + gem 'capistrano-passenger', require: false + gem 'highline', require: false end group :test do @@ -71,6 +79,10 @@ group :test do gem "selenium-webdriver" end +group :production do + gem 'mysql2' +end + gem "rice" gem "haml" gem "enumerize" -- cgit 1.4.1