-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
80 lines (58 loc) · 973 Bytes
/
Gemfile
File metadata and controls
80 lines (58 loc) · 973 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
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
source 'https://rubygems.org'
# Core
gem 'rails', '4.2.6'
gem 'pg', '~> 0.15'
gem 'puma'
gem 'delayed_job_active_record'
# API
gem 'jsonapi-resources'
gem 'rack-cors'
# Auth
gem 'sorcery'
gem 'jwt'
gem 'cancancan'
# Resources
gem 'friendly_id'
gem 'money-rails'
gem 'embedly'
gem 'transloadit'
gem 'rest-client'
# Misc
gem 'citeproc'
gem 'citeproc-ruby'
gem 'csl-styles'
gem 'paper_trail'
# Files
gem 'carrierwave'
gem 'fog'
gem 'cloudinary'
# Docs
group :doc do
gem 'sdoc', '~> 0.4.0'
gem 'railroady'
end
# Test
group :test, :development do
gem 'factory_girl_rails'
gem 'faker'
gem 'dotenv-rails'
end
# Development
group :development do
gem 'pry'
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'quiet_assets'
gem 'letter_opener'
gem 'letter_opener_web'
gem 'yaml_db'
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'annotate'
end
# Production
group :production do
gem 'rails_12factor'
end
ruby '2.3.0'