-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (35 loc) · 1.05 KB
/
Gemfile
File metadata and controls
47 lines (35 loc) · 1.05 KB
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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1'
# Use PostgreSQL database
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Cross-Origin HTTP request
gem 'rack-cors'
gem 'whenever', require: false
gem 'dotenv-rails'
gem 'radiator'
gem 'will_paginate'
gem 'bugsnag'
group :development, :test do
# Call 'pry' anywhere in the code to stop execution and get a debugger console
gem 'pry'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background
# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.0'
# Utility for managing multiple processes
gem 'foreman'
gem 'capistrano'
gem 'capistrano3-puma'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]