Skip to content

Instantly share code, notes, and snippets.

@anapsix
Created November 18, 2013 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anapsix/7534339 to your computer and use it in GitHub Desktop.
Save anapsix/7534339 to your computer and use it in GitHub Desktop.
GitLab-CI PATCH:: BUNDLER: adding sqlite3 support
From b8abbcc636dad8271477352315da1e9a575b853c Mon Sep 17 00:00:00 2001
From: Anastas Semenov <anapsix@random.io>
Date: Mon, 18 Nov 2013 19:23:18 +0000
Subject: [PATCH] BUNDLER: adding sqlite3 support
---
Gemfile | 5 +++--
Gemfile.lock | 2 ++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Gemfile b/Gemfile
index b0e8a4f..f8ae308 100644
--- a/Gemfile
+++ b/Gemfile
@@ -11,8 +11,9 @@ end
gem 'rails', '3.2.14'
# DB
-gem 'mysql2', group: :mysql
-gem 'pg', group: :postgres
+gem 'sqlite3', group: :sqlite3
+gem 'mysql2', group: :mysql
+gem 'pg', group: :postgres
# Settings
gem 'settingslogic'
diff --git a/Gemfile.lock b/Gemfile.lock
index a5f9fad..d71576a 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -247,6 +247,7 @@ GEM
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
+ sqlite3 (1.3.8)
stamp (0.5.0)
state_machine (1.2.0)
temple (0.6.5)
@@ -313,6 +314,7 @@ DEPENDENCIES
simplecov
sinatra
slim
+ sqlite3
stamp
state_machine
therubyracer
--
1.7.10.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment