]> git.openstreetmap.org Git - rails.git/blob - Gemfile
Localisation updates from https://translatewiki.net.
[rails.git] / Gemfile
1 source "https://rubygems.org"
2
3 # Require rails
4 gem "rails", "5.2.0"
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", "~> 0.18"
17
18 # Use SCSS for stylesheets
19 gem "sass-rails", "~> 5.0"
20
21 # Use Uglifier as compressor for JavaScript assets
22 gem "uglifier", ">= 1.3.0"
23
24 # Use CoffeeScript for .js.coffee assets and views
25 gem "coffee-rails", "~> 4.2"
26
27 # Use jquery as the JavaScript library
28 gem "jquery-rails"
29
30 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
31 # gem 'jbuilder', '~> 2.0'
32 gem "jsonify-rails"
33
34 # Reduces boot times through caching; required in config/boot.rb
35 gem "bootsnap", ">= 1.1.0", :require => false
36
37 # Use R2 for RTL conversion
38 gem "r2", "~> 0.2.7"
39
40 # Use autoprefixer to generate CSS prefixes
41 gem "autoprefixer-rails"
42
43 # Use image_optim to optimise images
44 gem "image_optim_rails"
45
46 # Load rails plugins
47 gem "actionpack-page_caching"
48 gem "composite_primary_keys", "~> 11.0.0"
49 gem "dynamic_form"
50 gem "http_accept_language", "~> 2.0.0"
51 gem "i18n-js", ">= 3.0.0"
52 gem "oauth-plugin", ">= 0.5.1"
53 gem "openstreetmap-deadlock_retry", ">= 1.3.0", :require => "deadlock_retry"
54 gem "paperclip", "~> 5.2"
55 gem "rack-cors"
56 gem "rails-i18n", "~> 4.0.0"
57 gem "record_tag_helper"
58 gem "rinku", ">= 1.2.2", :require => "rails_rinku"
59 gem "validates_email_format_of", ">= 1.5.1"
60
61 # Native OSM extensions
62 gem "quad_tile", "~> 1.0.1"
63
64 # Sanitise URIs
65 gem "rack-uri_sanitizer"
66
67 # Omniauth for authentication
68 gem "omniauth"
69 gem "omniauth-facebook"
70 gem "omniauth-github"
71 gem "omniauth-google-oauth2", ">= 0.2.7"
72 gem "omniauth-mediawiki", ">= 0.0.3"
73 gem "omniauth-openid"
74 gem "omniauth-windowslive"
75
76 # Markdown formatting support
77 gem "redcarpet"
78
79 # For status transitions of Issues
80 gem "aasm"
81
82 # Load libxml support for XML parsing and generation
83 gem "libxml-ruby", ">= 2.0.5", :require => "libxml"
84
85 # Use for HTML sanitisation
86 gem "htmlentities"
87 gem "sanitize"
88
89 # Load SystemTimer for implementing request timeouts
90 gem "SystemTimer", ">= 1.1.3", :require => "system_timer", :platforms => :ruby_18
91
92 # Load faraday for mockable HTTP client
93 gem "faraday"
94
95 # Load geoip for querying Maxmind GeoIP database
96 gem "geoip"
97
98 # Load rotp to generate TOTP tokens
99 gem "rotp"
100
101 # Load memcache client in case we are using it
102 gem "dalli"
103 gem "kgio"
104
105 # Load secure_headers for Content-Security-Policy support
106 gem "secure_headers"
107
108 # Load canonical-rails to generate canonical URLs
109 gem "canonical-rails"
110
111 # Used to generate logstash friendly log files
112 gem "logstasher"
113
114 # Gems useful for development
115 group :development do
116   gem "annotate"
117   gem "better_errors"
118   gem "binding_of_caller"
119   gem "listen"
120   gem "vendorer"
121 end
122
123 # Gems needed for running tests
124 group :test do
125   gem "minitest", "~> 5.1", :platforms => [:ruby_19, :ruby_20]
126   gem "rails-controller-testing"
127   gem "rubocop"
128   gem "webmock"
129 end
130
131 # Needed in development as well so rake can see konacha tasks
132 group :development, :test do
133   gem "capybara", "~> 2.13"
134   gem "coveralls", :require => false
135   gem "factory_bot_rails"
136   gem "jshint"
137   gem "poltergeist"
138   gem "puma", "~> 3.7"
139 end