-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (34 loc) · 1.09 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
source 'https://rubygems.org'
ruby '2.1.4'
gem 'dotenv-rails', '~> 0.9.0', groups: [:development, :test]
gem 'rails', '~> 3.2.22'
gem 'jquery-rails', '~> 3.1.3'
gem 'will_paginate', '~> 3.0.3' # pagination for index pages
gem 'redcarpet', '~> 2.1.1' # markdown
gem 'cocaine', '0.3.2' # paperclip dependency; later versions break things
gem 'paperclip', '3.0.3' # uploads (for frames)
gem 'aws-sdk', '~> 1.3.4' # storage on Amazon S3
gem 'thin', '~> 1.3.1' # a faster server
gem 'friendly_id', '~> 4.0.1' # friendly urls (names instead of numbers)
gem 'paper_trail', '~> 2.6.3' # track changes and allow undo
group :assets do
gem 'sass-rails', '~> 3.2.4'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 2.5.3'
gem 'zurb-foundation', '~> 2.2.1'
end
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails'
gem 'capybara'
# gem 'show_me_the_cookies'
gem 'factory_girl_rails'
gem 'guard-rspec'
# gem 'wdm' # guard needs it on Windows
gem 'spork'
gem 'guard-spork'
gem 'execjs', '1.2.4' # https://github.com/sstephenson/execjs/issues/48
end
group :production do
gem 'pg'
end