-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
executable file
·34 lines (24 loc) · 730 Bytes
/
Copy pathGemfile
File metadata and controls
executable file
·34 lines (24 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
source 'https://rubygems.org'
# Classy web-development dressed in a DSL
gem 'sinatra'
# A generic swappable back-end for JSON handling.
gem 'multi_json'
# fastest JSON loader/dumper
gem 'oj'
# Object Relational Model: ActiveRecord
gem 'activerecord'
# Extends Sinatra with ActiveRecord helper methods and Rake tasks
gem 'sinatra-activerecord'
# The Ruby interface to the PostgreSQL RDBMS
gem 'pg'
# A very fast & simple Ruby web server
gem 'thin'
group :development do
# reloading rack development server / forking version of rackup
gem 'shotgun'
# Sinatra dressed for interactive ruby - a sinatra shell
gem 'tux'
# A mini view framework for console/irb that's easy to use
gem 'hirb'
gem 'hirb-unicode'
end