-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (38 loc) · 988 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
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 'annotate'
gem 'bootstrap-sass'
gem 'cancancan', '~> 1.16'
gem 'chartkick'
gem 'chroma'
gem 'coffee-script'
gem 'devise'
gem 'faker', '~> 1.7.3'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'paperclip'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.0.2'
gem 'sass-rails', '~> 5.0'
gem 'simple_form'
gem 'themoviedb'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'better_errors'
gem 'listen', '~> 3.0.5'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'rails-controller-testing'
gem 'minitest-reporters', '1.1.9'
gem 'guard', '2.13.0'
gem 'guard-minitest', '2.4.4'
gem 'minitest', '~> 5.10', '!= 5.10.2'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]