-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
67 lines (58 loc) · 1.25 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
58
59
60
61
62
63
64
65
66
67
source 'https://rubygems.org'
gem 'dotenv-rails'
# authentification
gem 'devise'
#gem 'pundit'
gem 'stripe'
gem 'faker'
gem 'toastr-rails'
gem 'remotipart', github: 'mshibuya/remotipart'
gem 'rails_admin', '>= 1.0.0.rc'
gem 'rails'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'devise-i18n'
group :development, :test do
gem 'sqlite3'
gem 'byebug', '9.0.6', platform: :mri
gem 'rspec-rails'
gem 'pry-rails'
gem 'pry-byebug'
gem 'database_cleaner'
gem "factory_bot_rails"
gem 'simplecov'
gem 'dotenv-rails'
end
group :development, :production do
gem 'bootsnap'
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem 'letter_opener'
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
end
group :test do
gem 'capybara'
gem 'poltergeist'
gem 'shoulda-matchers'
end
group :production do
gem 'pg', '0.20.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap-sass', '~> 3.3.7'
gem 'omniauth', '~> 1.6'
gem 'omniauth-facebook', '~> 4.0'
gem 'paperclip', '~> 5.1.0'
gem 'geocoder', '~> 1.4'
gem 'jquery-ui-rails', '~> 5.0'