]> git.openstreetmap.org Git - rails.git/blob - Gemfile
Bump coverallsapp/github-action from 2.1.0 to 2.1.2
[rails.git] / Gemfile
1 source "https://rubygems.org"
2
3 # Require rails
4 gem "rails", "~> 7.0.0"
5
6 # Require json for multi_json
7 gem "json"
8
9 # Use postgres as the database
10 gem "pg"
11
12 # Use SCSS for stylesheets
13 gem "sassc-rails"
14
15 # Use Terser as compressor for JavaScript assets
16 gem "terser"
17
18 # Use jquery as the JavaScript library
19 gem "jquery-rails"
20
21 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
22 gem "jbuilder", "~> 2.7"
23
24 # Reduces boot times through caching; required in config/boot.rb
25 gem "bootsnap", ">= 1.4.2", :require => false
26
27 # Use R2 for RTL conversion
28 gem "r2", "~> 0.2.7"
29
30 # Use autoprefixer to generate CSS prefixes
31 gem "autoprefixer-rails"
32
33 # Use image_optim to optimise images
34 gem "image_optim_rails"
35
36 # Use argon2 for password hashing
37 gem "argon2"
38
39 # Support brotli compression for assets
40 gem "sprockets-exporters_pack"
41
42 # Load rails plugins
43 gem "actionpack-page_caching", ">= 1.2.0"
44 gem "activerecord-import"
45 gem "active_record_union"
46 gem "bootstrap", "~> 5.1.0"
47 gem "bootstrap_form", "~> 5.0"
48 gem "cancancan"
49 gem "composite_primary_keys", "~> 14.0.0"
50 gem "config"
51 gem "delayed_job_active_record"
52 gem "frozen_record"
53 gem "http_accept_language", "~> 2.1.1"
54 gem "i18n-js", "~> 3.9.2"
55 gem "oauth-plugin", ">= 0.5.1"
56 gem "openstreetmap-deadlock_retry", ">= 1.3.1", :require => "deadlock_retry"
57 gem "rack-cors"
58 gem "rails-i18n", "~> 7.0.0"
59 gem "rinku", ">= 2.0.6", :require => "rails_rinku"
60 gem "strong_migrations"
61 gem "validates_email_format_of", ">= 1.5.1"
62
63 # Native OSM extensions
64 gem "quad_tile", "~> 1.0.1"
65
66 # Sanitise URIs
67 gem "rack-uri_sanitizer"
68
69 # Omniauth for authentication
70 gem "omniauth", "~> 2.0.2"
71 gem "omniauth-facebook"
72 gem "omniauth-github"
73 gem "omniauth-google-oauth2", ">= 0.6.0"
74 gem "omniauth-mediawiki", ">= 0.0.4"
75 gem "omniauth-openid"
76 gem "omniauth-rails_csrf_protection", "~> 1.0"
77 gem "omniauth-windowslive"
78
79 # Doorkeeper for OAuth2
80 gem "doorkeeper"
81 gem "doorkeeper-i18n"
82
83 # Markdown formatting support
84 gem "kramdown"
85
86 # For status transitions of Issues
87 gem "aasm"
88
89 # Load libxml support for XML parsing and generation
90 gem "libxml-ruby", ">= 2.0.5", :require => "libxml"
91
92 # Use for HTML sanitisation
93 gem "htmlentities"
94 gem "sanitize"
95
96 # Load faraday for mockable HTTP client
97 gem "faraday"
98
99 # Load maxminddb for querying Maxmind GeoIP database
100 gem "maxminddb"
101
102 # Load rotp to generate TOTP tokens
103 gem "rotp"
104
105 # Load memcache client in case we are using it
106 gem "connection_pool"
107 gem "dalli"
108 gem "kgio"
109
110 # Load secure_headers for Content-Security-Policy support
111 gem "secure_headers"
112
113 # Load canonical-rails to generate canonical URLs
114 gem "canonical-rails"
115
116 # Used to generate logstash friendly log files
117 gem "logstasher"
118
119 # Used to generate images for traces
120 gem "bzip2-ffi"
121 gem "ffi-libarchive"
122 gem "gd2-ffij", ">= 0.4.0"
123 gem "marcel"
124
125 # Used for browser detection
126 gem "browser"
127
128 # Used for S3 object storage
129 gem "aws-sdk-s3"
130
131 # Used to resize user images
132 gem "image_processing"
133
134 # Gems useful for development
135 group :development do
136   gem "annotate"
137   gem "better_errors"
138   gem "binding_of_caller"
139   gem "debug_inspector"
140   gem "i18n-tasks"
141   gem "listen"
142   gem "vendorer"
143 end
144
145 # Gems needed for running tests
146 group :test do
147   gem "brakeman"
148   gem "capybara", ">= 2.15"
149   gem "erb_lint", :require => false
150   gem "factory_bot_rails"
151   gem "minitest", "~> 5.1"
152   gem "puma", "~> 5.6"
153   gem "rails-controller-testing"
154   gem "rubocop"
155   gem "rubocop-capybara"
156   gem "rubocop-minitest"
157   gem "rubocop-performance"
158   gem "rubocop-rails"
159   gem "rubocop-rake"
160   gem "selenium-webdriver"
161   gem "simplecov", :require => false
162   gem "simplecov-lcov", :require => false
163   gem "webmock"
164 end