-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
90 lines (74 loc) · 1.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
source 'https://rubygems.org'
# Make sure we're running on Ruby 2.1
ruby '2.1.2'
# Core
gem 'rails', '4.1.6'
gem 'pg'
gem 'puma', require: false
gem 'rack-cache', require: 'rack/cache'
gem 'timers'
gem 'exception_notification'
gem 'lograge'
# .env configuration loading
gem 'dotenv'
gem 'dotenv-rails'
gem 'dotenv-deployment'
# Frontend
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'slim-rails'
gem 'compass-rails'
gem 'simple_form'
gem 'slodown', github: 'hmans/slodown', branch: 'master'
gem 'font-awesome-rails'
gem 'kaminari'
gem 'microformats2'
# Binary asset handling
gem 'dragonfly'
gem 'dragonfly-s3_data_store'
# Authorization/Authentication
gem 'cancancan'
gem 'bcrypt', '~> 3.1.7'
# API
gem 'jbuilder', '~> 2.0'
# HTTP interactions
gem 'httparty'
gem 'webmention', github: 'indieweb/mention-client-ruby'
# Development & Testing only
#
group :test, :development do
# Spring application reloader
gem 'spring'
gem 'spring-commands-rspec'
# Debugging
gem 'pry-rails'
gem 'awesome_print'
# RSpec & friends
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'ffaker'
end
# Development only.
group :development do
# Capistrano
gem 'capistrano-rails', require: false
gem 'capistrano-chruby', require: false
gem 'capistrano-bundler', require: false
# Nicer error messages
gem 'better_errors'
gem 'binding_of_caller'
# Log cleanup
gem 'quiet_assets'
end
# Testing only.
#
group :test do
gem 'webmock'
end
# Production only
#
group :production do
end