-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
106 lines (83 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
source 'https://rubygems.org'
ruby '2.4.1'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Environment variables
gem 'dotenv-rails', require: 'dotenv/rails-now', groups: [:development, :test]
# Rails
gem 'rails', '~> 5.1.2'
# ActiveRecord and ActiveModel
gem 'bcrypt', '~> 3.1.7' # Use ActiveModel has_secure_password
gem 'strip_attributes' # See https://github.com/rmm5t/strip_attributes
gem 'devise' # Authentication
# Servers
gem 'puma', '~> 3.7'
# Databases
gem 'pg'
# JavaScript and SCSS
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks', '~> 5'
# gem 'therubyracer', platforms: :ruby
# API
gem 'jbuilder', '~> 2.5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# Simple forms
gem 'simple_form'
# Prrformance
gem 'bootsnap', require: false
# Logging
gem 'lograge' # One-line logs
gem 'shog' # Colourful logs
# Debugging tools - here so they are available on prod and staging rails consoles
gem 'awesome_print'
gem 'pry'
gem 'pry-doc', '~>0.11'
gem 'pry-rails'
# Soft Deletion
gem 'paranoia', '~> 2.2'
group :development, :test do
# Testing
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara'
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails'
gem 'shoulda-matchers', git: 'https://github.com/thoughtbot/shoulda-matchers.git', branch: 'rails-5'
# Dynamic Analysis
gem 'bullet' # N+1 queries
# Static analysis
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'mdl', require: false
gem 'rails_best_practices', require: false
gem 'reek', require: false
gem 'rubocop', require: false
gem 'rubocop-rspec', require: false
gem 'sandi_meter', require: false
gem 'traceroute'
# Static Analysis GUIs
gem 'rubrowser', require: false
gem 'rubycritic', require: false
end
group :test do
gem 'simplecov', require: false
# gem 'codeclimate-test-reporter', '~> 1.0.0'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'meta_request' # Supporting gem for RailsPanel chrome extension.
gem 'better_errors' # Better Rails error pages
gem 'binding_of_caller' # Required by better errors.
end
group :production do
gem 'heroku-deflater'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]