-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
41 lines (36 loc) · 816 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '5.0.0.1'
gem 'pg', '~> 0.15'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'twilio-ruby'
gem 'authy'
gem 'figaro'
gem 'factory_girl_rails'
gem 'jquery-rails'
gem 'rack_session_access'
gem 'faker'
gem 'pry-rails'
gem 'haml'
gem 'jbuilder', '~> 2.0'
gem 'rails_12factor', group: :production
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bcrypt', '~> 3.1.7'
gem 'foundation-rails'
gem 'unicorn'
gem "paperclip", "~> 5.0.0"
gem 'simplecov', :require => false, :group => :test
gem 'omniauth-twitter'
group :development, :test do
gem 'byebug'
gem 'capybara'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'launchy'
gem 'database_cleaner'
gem 'nyan-cat-formatter'
end
group :development do
gem 'web-console', '~> 2.0'
end