-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
46 lines (38 loc) · 1.02 KB
/
Gemfile
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
35
36
37
38
39
40
41
42
43
44
45
46
source 'https://rubygems.org'
ruby '2.2.2'
gem 'roda'
gem 'unicorn'
gem 'tilt'
gem 'yuicompressor'
gem 'sequel'
gem 'rake'
gem 'rack-unreloader'
# gem 'sequel-pg', require: 'sequel'
gem 'sqlite3'
gem 'pry', group: :development
gem 'better_errors', group: :development
gem 'binding_of_caller', group: :development
# Roda: Routing Tree Web Framework Toolkit
# => https://github.com/jeremyevans/roda
#
# Unicorn: Rack HTTP server for fast clients and Unix
# => http://unicorn.bogomips.org/
#
#
# Tilt: Generic interface to multiple Ruby template engines
# => http://github.com/rtomayko/tilt
#
# YuiCompressor: A YUI JavaScript and CSS compressor for Ruby and JRuby
# => https://github.com/mjackson/yuicompressor
#
#
# Sequel: The Database Toolkit for Ruby
# => http://sequel.jeremyevans.net
#
#
# Rake: A make-like build utility for Ruby
# => http://docs.seattlerb.org/rake
#
# Rack::Unreloader: Rack Application that reloads application files if
# changed, unloading constants first
# => https://github.com/jeremyevans/rack-unreloader