forked from evanleck/sinatra-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (41 loc) · 968 Bytes
/
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
47
48
49
50
51
52
53
54
55
56
# = Gemfile containing requirements for this app =
# see http://gembundler.com/ for more on how to use this file
# source (there are others but whatever)
source :rubygems
# session store
gem 'dalli', :require => 'rack/session/dalli'
gem 'kgio'
gem 'settingslogic'
gem 'rake'
gem 'hull'
# server
gem 'unicorn'
# development
# gem 'foreman'
# rack
gem 'rack'
gem 'rack-contrib', :require => 'rack/contrib'
gem 'rack-protection', :require => 'rack/protection'
# sinatra
gem 'sinatra'
gem 'sinatra-flash', :require => 'sinatra/flash' # enables flash[:notice] && flash[:error]
# faster better stronger
gem 'erubis'
# email
gem 'pony'
gem 'growl'
gem 'rb-fsevent'
gem 'rack-livereload'
gem 'guard' , '~> 1.3.1'
gem 'guard-livereload'
gem 'compass'
gem 'uglifier'
gem 'oily_png'
gem 'handlebars_assets'
gem 'coffee-script'
# sprockets galore
gem 'sprockets'
gem 'sprockets-sass'
gem 'sprockets-helpers'
gem 'rubypython', '0.5.1'
gem 'pygments.rb', '0.1.3'