forked from diowa/icare
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
112 lines (88 loc) · 2.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# frozen_string_literal: true
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.7.1'
gem 'rails', '6.0.3.1'
# Use postgresql as the database for Active Record
gem 'activerecord-postgis-adapter', '~> 6.0'
gem 'pg', '~> 1.2'
# Servers
gem 'puma', '~> 4.3'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.1'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '~> 1.4', require: false
# Background jobs within the same process as web application
gem 'sucker_punch', '~> 2.1'
# Multi-environment configuration
gem 'simpleconfig', '~> 2.0'
# API
gem 'jbuilder', '~> 2.10'
# Forms
gem 'simple_form', '~> 5.0'
# ODM and related
gem 'client_side_validations', '~> 17.0'
gem 'client_side_validations-simple_form', '~> 11.0'
gem 'friendly_id', '~> 5.2'
gem 'kaminari', '~> 1.2'
gem 'validates_timeliness', '~> 4.1'
# Authentication framework
gem 'devise', '~> 4.7'
# Geospatial data library
gem 'rgeo', '~> 2.0'
# Facebook integration
gem 'koala', '~> 3.0'
gem 'omniauth-facebook', '~> 6.0'
# Performance
gem 'newrelic_rpm', '~> 6.11'
# Security
gem 'secure_headers', '~> 6.3'
# Miscellanea
gem 'addressable', '~> 2.7'
gem 'http_accept_language', '~> 2.1'
gem 'slim-rails', '~> 3.2'
# Assets
gem 'i18n-js', '~> 3.7'
gem 'inline_svg', '~> 1.7'
gem 'turbolinks', '~> 5.2'
# Errors reporting
gem 'airbrake', '~> 10.0'
group :development, :test do
gem 'bullet', '~> 6.1'
gem 'byebug', '~> 11.1'
gem 'factory_bot_rails', '~> 5.2'
gem 'faker', '~> 2.12'
gem 'pry', '~> 0.13.1'
gem 'pry-byebug', '~> 3.9'
gem 'pry-rails', '~> 0.3.9'
gem 'rspec-rails', '~> 4.0'
gem 'rubocop', '~> 0.85.1', require: false
gem 'rubocop-performance', '~> 1.6', require: false
gem 'rubocop-rails', '~> 2.6', require: false
gem 'rubocop-rspec', '~> 1.40', require: false
gem 'slim_lint', '~> 0.20.1', require: false
end
group :development do
gem 'better_errors', '~> 2.7'
gem 'binding_of_caller', '~> 0.8.0'
gem 'listen', '~> 3.2'
gem 'spring', '~> 2.1'
gem 'spring-commands-rspec', '~> 1.0'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 4.0'
end
group :test do
gem 'capybara', '~> 3.32'
gem 'coveralls_reborn', '~> 0.16.0', require: false
gem 'database_cleaner', '~> 1.8'
gem 'email_spec', '~> 2.2'
gem 'launchy', '~> 2.5'
gem 'selenium-webdriver', '~> 3.142'
gem 'simplecov', '~> 0.18.5', require: false
gem 'webmock', '~> 3.8', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1.2018', platforms: %i[mingw mswin x64_mingw jruby]