-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGemfile
67 lines (58 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '4.2'
# Postgresql
gem 'pg'
gem 'pg_search'
gem 'dalli'
# File/Image upload handler
gem 'carrierwave'
gem 'fog', '~> 1.27.0'
gem 'rmagick', '2.13.2'
# Haml for views, scss stylesheets, uglifier js compressor and coffee-js
gem 'sass-rails', '~> 5.0'
gem 'bootstrap-sass'
gem 'jquery-rails'
gem 'therubyracer'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'haml', '>= 3.0.0'
gem 'haml-rails'
gem 'neat'
gem 'execjs'
# User authentication
gem 'devise'
# Markdown
gem 'rdiscount'
gem 'pagedown-rails', '~> 1.1.3'
# Friendly URLs
gem 'friendly_id'
# Fast tweet buttons view helper
gem 'tweet-button'
# Analytics
gem 'newrelic_rpm'
gem 'exception_notification'
# Quick string diff checker
gem 'differ'
# Quick tags for models, and active resource for star model.
gem 'acts-as-taggable-on', '~> 3.4'
gem 'activeresource' # maybe activeresource is not needed
group :development do
gem 'thin'
gem 'meta_request', '0.2.0'
gem 'guard'
gem 'guard-livereload', require: false
gem 'rack-livereload'
# Better errors gives a more informative error screen
gem 'better_errors', require: false
gem 'binding_of_caller', require: false
end
group :development, :test do
# Rspec for testing
gem 'rspec-rails', '>= 2.0.1'
gem 'factory_girl_rails', '~> 4.5.0'
end
group :production do
# Requirement to push to Heroku
gem 'rails_12factor'
end