From 910bd149a5856b0846a1e6520f141354ea1621e8 Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Sat, 26 Jul 2014 09:33:31 -0400 Subject: [PATCH] gemfile updates --- Gemfile | 10 ++++++++++ Gemfile.lock | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/Gemfile b/Gemfile index 34d318b..39deb9d 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,17 @@ source 'https://rubygems.org' +ruby '2.0.0' + gem "rack" gem "sinatra" gem "sequel" gem "anybase" gem "aws-s3" + +group :development do + gem "sqlite3" +end + +group :production do + gem "pg" +end diff --git a/Gemfile.lock b/Gemfile.lock index 376a7f0..7a01593 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,6 +8,7 @@ GEM xml-simple builder (3.2.2) mime-types (2.3) + pg (0.17.1) rack (1.5.2) rack-protection (1.5.3) rack @@ -16,6 +17,7 @@ GEM rack (~> 1.4) rack-protection (~> 1.4) tilt (~> 1.3, >= 1.3.4) + sqlite3 (1.3.9) tilt (1.4.1) xml-simple (1.1.4) @@ -25,6 +27,8 @@ PLATFORMS DEPENDENCIES anybase aws-s3 + pg rack sequel sinatra + sqlite3