-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
50 lines (37 loc) · 799 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
source 'https://rubygems.org'
# Rake (like "make"), to use Rakefile (Makefile for Ruby):
gem 'rake'
gem 'sinatra', '~> 1.4.2'
group :test do
# Testing
gem 'rack-test'
end
group :development, :test do
# Web server (instead of WEBrick):
gem 'thin'
end
# Database interaction:
gem 'activerecord', '~> 3.2.13'
gem 'sqlite3'
# HTML/CSS from templates:
gem 'haml'
gem 'redcarpet'
gem 'sass'
# HTML to Markdown
gem 'reverse_markdown'
# Mixin library for Sass:
gem 'bourbon'
# Localizations:
gem 'i18n'
# Email:
gem 'pony'
# Session-based flash messages
gem 'sinatra-flash'
group :development do
# Ruby Debugger:
gem 'debugger'
# Better error pages in development:
gem 'better_errors'
# Causes the server fail to start:
# gem 'binding_of_caller' # used by better_errors
end