-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (35 loc) · 858 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
source 'http://rubygems.org'
gem 'rails', '3.1.3'
gem 'comma', '~> 3.0'
gem 'forem', :git => "git://github.com/mumo/forem.git"
gem 'forem-redcarpet', :git => "git://github.com/radar/forem-redcarpet"
gem 'forem-theme-base', :git => "git://github.com/radar/forem-theme-base.git"
gem 'sqlite3'
gem 'rmagick'
gem 'rack-cache', :require => 'rack/cache'
gem 'dragonfly', '~>0.9.9'
gem 'fog'
gem 'jquery-rails'
gem 'haml-rails'
gem 'cocoon'
gem 'kaminari'
gem 'has_scope'
gem 'gmaps4rails'
gem 'devise'
gem 'inherited_resources'
gem "simple_form"
gem "friendly_id", "~> 4.0.0"
gem 'tinymce-rails'
group :assets do
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :production do
gem 'pg'
end
group :test do
# Pretty printed test output
gem 'turn', '0.8.2', :require => false
end