-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (42 loc) · 1.15 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
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
ruby '2.5.1'
gem 'rails', '~> 5.2.0'
group :development do
gem 'sqlite3', '~> 1.3.13'
end
group :test, :production do
gem 'pg'
end
gem 'puma', '~> 3.11.4'
gem 'sass-rails', '~> 5.0.7'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2.2'
gem 'bundler', '~> 1.16.2'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.1.1'
gem 'jbuilder', '~> 2.7.0'
group :development, :test do
gem 'byebug', platform: :mri
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.1'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap-sass', '~> 3.3.7'
gem 'devise', '~> 4.4.3'
gem 'toastr-rails', '~> 1.0.3'
gem 'omniauth', '~> 1.8.1'
gem 'omniauth-facebook', '~> 5.0.0'
gem 'paperclip', '~> 6.0.0'
gem 'aws-sdk', '~> 3.0.1'
gem 'geocoder', '~> 1.4.9'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'ransack', '~> 1.8.8'
gem 'rolify', :git => 'git://github.com/EppO/rolify.git'