-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (27 loc) · 713 Bytes
/
Gemfile
File metadata and controls
29 lines (27 loc) · 713 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
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.1.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'devise', '~> 3.2.2'
gem "paperclip", "~> 4.1"
gem 'mini_magick'
gem 'bootstrap-sass'
gem 'spring', group: :development
gem 'will_paginate', '~> 3.0'
gem 'will_paginate-bootstrap'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'figaro'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails', '~> 2.14.1'
gem 'capybara', '~> 2.2.1'
gem 'factory_girl_rails'
gem 'database_cleaner', :git => "git://github.com/bmabey/database_cleaner.git"
end