-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (36 loc) · 870 Bytes
/
Gemfile
File metadata and controls
41 lines (36 loc) · 870 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
source 'https://rubygems.org'
gem 'rails', '4.1.6'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'unicorn', '~> 4.8.3'
gem 'sidekiq', '~> 3.2.5'
gem 'simple_form', '3.1.0.rc2'
gem 'haml-rails', '~> 0.5.3'
gem 'bourbon', '~> 3.2.1'
gem 'neat', '~> 1.5.1'
gem 'devise', '~> 3.4.0'
gem 'pundit', '~> 0.3.0'
gem 'twilio-ruby', '~> 3.13.1'
gem 'ranked-model', '~> 0.4.0'
gem 'redcarpet', '~> 3.1.2'
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'letter_opener', '~> 1.2.0'
end
group :development, :test do
gem 'factory_girl_rails', '~> 4.4.1'
gem 'figaro', '~> 1.0.0'
end
group :test do
gem 'rspec-rails', '~> 3.1.0'
gem 'shoulda-matchers', require: false
gem 'capybara', '~> 2.4.3'
end
group :production do
gem 'rails_12factor'
end