forked from swrobel/meta-surf-forecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (41 loc) · 1.02 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby "~> #{`cat .ruby-version`.strip}"
# Force github sources to use https instead of insecure git protocol
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.2.0.beta2'
gem 'bootsnap'
gem 'bootstrap', '~> 4.0.0.alpha3'
gem 'friendly_id'
gem 'pg', '~> 0.18'
gem 'puma'
gem 'react-rails'
gem 'scenic'
gem 'slim-rails'
gem 'webpacker'
group :development, :test do
gem 'dotenv-rails'
gem 'pgreset'
end
group :development do
gem 'guard'
gem 'guard-bundler', require: false
gem 'guard-rubocop', require: false
gem 'guard-shell', require: false
gem 'invoker'
gem 'rack-toolbar'
gem 'rubocop'
gem 'spring'
gem 'spring-commands-rubocop', require: false
gem 'spring-watcher-listen'
gem 'terminal-notifier-guard'
gem 'web-console', '~> 3.0'
end
group :production do
gem 'newrelic_rpm'
gem 'rails_12factor'
gem 'redis-rails'
end