forked from swrobel/meta-surf-forecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (37 loc) · 973 Bytes
/
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
# 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.0.0'
gem 'bootstrap', '~> 4.0.0.alpha3'
gem 'coffee-rails', '~> 4.2.0'
gem 'jquery-rails'
gem 'nokogiri'
gem 'pg', '~> 0.18'
gem 'puma'
gem 'slim-rails'
gem 'sprockets', '~> 4.0.0.beta2'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
gem 'chartkick'
gem 'friendly_id', github: 'norman/friendly_id'
group :development, :test do
gem 'dotenv-rails'
end
group :development do
gem 'guard'
gem 'guard-bundler', require: false
gem 'guard-rubocop', require: false
gem 'spring'
gem 'terminal-notifier-guard'
gem 'web-console', '~> 3.0'
gem 'invoker'
end
group :production do
gem 'newrelic_rpm'
gem 'rails_12factor'
end