forked from turingschool/census
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
55 lines (47 loc) · 1.31 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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem "paperclip", "~> 5.0.0"
gem 'aws-sdk', '~> 2.3'
gem 'active_model_serializers', '~> 0.10.0'
# Production debugging
gem 'rails_12factor', group: :production
# Store environment variables on test/development securely
gem 'figaro'
# User authentication and some authorization
gem 'devise'
gem 'doorkeeper'
# Authorization
gem 'cancancan'
# Styling
gem 'bootstrap-sass'
gem 'rack-cors', require: 'rack/cors'
group :development, :test do
gem 'byebug', platform: :mri
gem 'pry-rails'
gem 'rspec-rails'
gem 'capybara'
gem 'launchy'
gem 'poltergeist'
gem 'shoulda-matchers'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'simplecov', require: false
gem 'oauth2' #used to simulate client app in testing
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'brakeman', :require => false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]