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