-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
53 lines (43 loc) · 1.81 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
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.5'
gem 'activerecord-deprecated_finders', '~> 1.0.4'
gem 'coffee-rails', '~> 4.1.0'
gem 'haml-rails', '~> 0.9.0'
gem 'sass-rails', '~> 5.0.4'
gem 'cactu', '0.0.16'
gem 'font-awesome-sass', '4.4.0'
gem 'jquery-rails', '~> 4.0.5'
gem 'jquery-ui-rails', '~> 5.0.5'
gem 'uglifier', '~> 2.7.2'
gem 'cfp', github: 'joiggama/cfp', tag: 'v0.4.0.alpha'
gem 'devise', '~> 3.5.2'
gem 'figaro', '~> 1.1.1'
gem 'gravtastic', '~> 3.2.6'
gem 'omniauth', '~> 1.2.2'
gem 'omniauth-github', '~> 1.1.2'
gem 'omniauth-google-oauth2', '~> 0.2.8'
gem 'pg', '~> 0.18.4'
gem 'puma', '~> 2.15.3'
gem 'will_paginate', '~> 3.0.7'
group :development, :test do
gem 'fabrication', '~> 2.14.1'
gem 'rspec-rails', '~> 3.4.0'
end
group :development do
gem 'annotate', '~> 2.6.10'
gem 'pry-byebug', '~> 1.3.3'
gem 'pry-remote', '~> 0.1.8'
gem 'powder', '~> 0.3.0'
gem 'tunnelss', '~> 0.1.3'
end
group :production do
gem 'airbrake', '~> 3.1.6'
gem 'rails_12factor', '~> 0.0.3'
gem 'newrelic_rpm', '~> 3.14.0'
end
group :test do
gem 'capybara', '~> 2.5.0'
gem 'poltergeist', '~> 1.8.1'
gem 'simplecov', '~> 0.11.1', require: false
end