-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
138 lines (118 loc) Β· 5.56 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.4'
#
# Rails essentials
#
# The application framework
gem 'rails', '~> 6.1.4', '>= 6.1.4.1'
# Use Puma as the development server
gem 'puma', '~> 5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript, Webpacker is the default JavaScript compiler for Rails 6
# Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.0'
# Turbolinks makes navigating your web application faster.
# When you follow a link, Turbolinks automatically fetches the page, swaps in its <body>, and merges its <head>
# Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
#
# Additional core gems
#
gem 'i18n-js'
# Use devise as an authentication solution
gem 'devise' # https://github.com/plataformatec/devise
gem 'devise-i18n' # https://github.com/tigrish/devise-i18n
gem 'devise-bootstrap-views' # https://github.com/hisea/devise-bootstrap-views
gem 'devise-i18n-bootstrap' # https://github.com/maximalink/devise-i18n-bootstrap
# Libraries for openID Connect authentication
gem 'omniauth' # https://github.com/omniauth/omniauth
gem 'omniauth_openid_connect' # https://github.com/m0n9oose/omniauth_openid_connect
gem 'tod'
#
# Libraries
#
# ICalendar and Ice_cube for ics parsing and event processing
gem 'icalendar'
gem 'ice_cube'
# gem for calendar
gem "simple_calendar", "~> 2.4"
#
# Gems that are loaded depending on the environment (development/test/production)
#
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4' # https://www.sqlite.org/index.html
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] # https://github.com/deivid-rodriguez/byebug
# RSpec testing framework as a drop-in alternative to Rails' default testing framework, Minitest
gem 'rspec-rails', '~> 5.0.0' # https://github.com/rspec/rspec-rails
# Factories instead of test fixtures
gem 'factory_bot_rails' # https://github.com/thoughtbot/factory_bot_rails
# Ruby static code analyzer (aka linter)
gem 'rubocop', '~> 1.23', require: false # https://github.com/rubocop-hq/rubocop
# Rails Extension for Rubocop
gem 'rubocop-rails', require: false # https://github.com/rubocop-hq/rubocop-rails
# rspec Extension for Rubocop
gem 'rubocop-rspec', require: false # https://github.com/rubocop-hq/rubocop-rspec
# Performance optimization analysis for your projects
gem 'rubocop-performance', require: false # https://github.com/rubocop-hq/rubocop-performance
# RSpec formatter compatible with GitHub Action's annotations
gem 'rspec-github', require: false # https://github.com/Drieam/rspec-github
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0' # https://github.com/rails/web-console
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Replaces standard Rails error page with a more useful error page
gem 'better_errors' # https://github.com/BetterErrors/better_errors
# binding_of_caller is optional, but is necessary to use Better Errors' advanced features
gem 'binding_of_caller' # https://github.com/banister/binding_of_caller
end
group :test do
# Adds support for Capybara system testing and selenium driver
# Capybara: Test web applications by simulating how a real user would interact with your app
gem 'capybara', '>= 3.26' # https://github.com/teamcapybara/capybara
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers' # https://github.com/titusfortner/webdrivers
# Provides one-liners to test common rails functionality, that, if written by hand, would be much longer
gem 'shoulda-matchers', '~> 5.0' # https://github.com/thoughtbot/shoulda-matchers
# Code coverage analysis tool for Ruby
gem 'simplecov', require: false # https://github.com/simplecov-ruby/simplecov
# Online coverage tool: https://github.com/codecov/example-ruby#codecov-ruby-example
gem 'codecov', require: false
end
group :production do
# https://devcenter.heroku.com/articles/sqlite3
gem 'pg' # production database runs on postgres
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "phonelib"
# Provides
# - the class `Concurrent::Hash` which is needed to keep user location data in a thread-safe way.
# - the class `Concurrent::TimerTask` which is used to spawn a recurring task that cleans the aforementioned data.
gem "concurrent-ruby", "~> 1.1"
# Authentication for permission system
gem 'cancancan'
# Easy working with HTTP Requests
gem 'httparty'
# Priority queue for Dijkstra (Indoor Routing)
gem 'algorithms'