forked from ckruse/cforum
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (30 loc) · 715 Bytes
/
Gemfile
File metadata and controls
45 lines (30 loc) · 715 Bytes
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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.0'
gem 'pg'
gem 'rails-i18n'
gem 'devise-i18n'
gem 'therubyracer'
gem 'devise'
gem "bcrypt-ruby", :require => "bcrypt"
gem 'kramdown'
gem 'coderay'
gem 'jquery-rails'
gem 'autoprefixer-rails'
gem 'daemons'
gem 'content_for_in_controllers'
gem 'kaminari'
group :development, :test do
gem 'factory_girl_rails'
gem 'quiet_assets'
gem 'simplecov', :require => false
gem 'faker'
end
gem 'sass-rails', '> 4.0.0'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'font-awesome-sass'
gem 'email_validator'
gem "paperclip"
# eof