-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (49 loc) · 1.22 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
source "https://rubygems.org"
ruby "2.5.0"
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem "bootsnap", require: false
gem "bulk_insert"
gem "devise", github: "plataformatec/devise"
gem "flipper"
gem "flipper-active_record"
gem "geocoder"
gem "pg", "~> 0.18"
gem "puma", "~> 3.7"
gem "rails", "5.2.0"
gem "sass-rails", "~> 5.0"
gem "sentry-raven"
gem "simple_form", "4.0.0"
gem "svgeez"
gem "textacular", github: "textacular/textacular"
gem "uglifier", ">= 1.3.0"
gem 'scenic'
gem 'rack-cors'
gem 'validate_url'
# https://github.com/turbolinks/turbolinks
gem "turbolinks", "~> 5"
# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 3.0"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "pry-nav"
gem "faker"
end
group :development do
gem "debase", "0.2.2.beta14"
gem "letter_opener"
gem "listen", ">= 3.0.5", "< 3.2"
gem "ruby-debug-ide"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
gem "rubocop"
gem "rubocop-rspec"
end
group :test do
gem "rspec-rails"
gem "factory_bot_rails"
gem "rails-controller-testing"
end