aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-06-08 12:19:23 -0400
committerTeddy Wing2014-06-08 12:19:23 -0400
commitb41ddb4aa9944057d4dfee5a4b9662dc8326d124 (patch)
treedcf683df917ca991f2d6bc5083d95e500ad6f3e5
parent8806e3a676d2fbe1397b0079318ca279851e476e (diff)
downloadsellevate-b41ddb4aa9944057d4dfee5a4b9662dc8326d124.tar.bz2
Gemfile: add sinatra-contrib
For easy JSON output
-rw-r--r--Gemfile1
-rw-r--r--Gemfile.lock12
2 files changed, 13 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 33723c5..08c96a8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,3 +2,4 @@ source 'https://rubygems.org'
gem 'contextio', '~> 1.7.2'
gem 'sinatra', '~> 1.4.5'
+gem 'sinatra-contrib'
diff --git a/Gemfile.lock b/Gemfile.lock
index 3501b89..0d0d741 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,6 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
+ backports (3.6.0)
contextio (1.7.2)
faraday (~> 0.8.0)
faraday_middleware (~> 0.9.0)
@@ -9,15 +10,25 @@ GEM
multipart-post (~> 1.2.0)
faraday_middleware (0.9.1)
faraday (>= 0.7.4, < 0.10)
+ multi_json (1.10.1)
multipart-post (1.2.0)
rack (1.5.2)
rack-protection (1.5.3)
rack
+ rack-test (0.6.2)
+ rack (>= 1.0)
simple_oauth (0.2.0)
sinatra (1.4.5)
rack (~> 1.4)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
+ sinatra-contrib (1.4.2)
+ backports (>= 2.0)
+ multi_json
+ rack-protection
+ rack-test
+ sinatra (~> 1.4.0)
+ tilt (~> 1.3)
tilt (1.4.1)
PLATFORMS
@@ -26,3 +37,4 @@ PLATFORMS
DEPENDENCIES
contextio (~> 1.7.2)
sinatra (~> 1.4.5)
+ sinatra-contrib