-
Notifications
You must be signed in to change notification settings - Fork 79
/
Gemfile
65 lines (54 loc) · 1.22 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
54
55
56
57
58
59
60
61
62
63
64
65
source 'https://rubygems.org'
ruby '2.1.5'
# Admin Tools
gem 'activeadmin'
gem 'meta_search', '>= 1.1.0.pre'
# Baseline Infrastructure
gem 'rails', '3.2.19'
gem 'jquery-rails'
gem 'pg'
gem 'psych', '~> 2.0.0'
# Operations
gem 'newrelic_rpm', '~> 3.9.0.229'
# Users & Authentication
gem 'bcrypt-ruby', require: 'bcrypt'
gem 'devise', '~> 3.3.0'
gem 'omniauth'
gem 'omniauth-github'
gem 'simple_form'
# Data & Features
gem 'acts-as-taggable-on', '~> 3.4.2'
gem 'friendly_id', '~> 4.0.10'
gem 'geocoder'
gem 'octokit', '~> 3.5.2'
gem 'paperclip', '~> 3.0'
gem 'aws-sdk'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
# Test Suite
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'factory_girl_rails'
gem 'dotenv-rails'
gem 'vcr'
gem 'fakeweb'
end
group :test do
gem 'shoulda-matchers'
gem 'simplecov', '~> 0.7.1'
end
# Development helpers
group :development do
gem 'quiet_assets'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# Foundation front-end framework
gem 'compass-rails'
gem 'zurb-foundation', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
end