summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 2a0e0c06f03cde0efec293c85a8f87e401fded03 (plain)
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
source 'https://rubygems.org'

gem 'rails', '3.2.12'
gem 'sqlite3'
gem 'json'

gem 'pandoc_rails', :path => 'vendor/gems/pandoc_rails'

gem 'haml'            # allow pages with .haml
gem 'RedCloth'        # allow :textile in HAML
gem 'sass-rails'      # not sure why can't be in :assets group

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'uglifier', '>= 1.0.3'
  gem 'execjs'  # See https://github.com/sstephenson/execjs#readme for supported runtimes
  gem 'therubyrhino'
end

gem 'jquery-rails'
gem 'capistrano'     # deploy with Capistrano

group :development do
  gem 'thin'
end