]> 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", "4.2.1"
5
6 # Sprockets 3 seems to be buggy, so stick with 2 for now
7 gem "sprockets", "~> 2.12.3"
8
9 # Require things which have moved to gems in ruby 1.9
10 gem "bigdecimal", "~> 1.1.0", :platforms => :ruby_19
11
12 # Require things which have moved to gems in ruby 2.0
13 gem "psych", :platforms => :ruby_20
14
15 # Require json for multi_json
16 gem "json"
17
18 # Use postgres as the database
19 gem "pg"
20
21 # Use SCSS for stylesheets
22 gem "sass-rails", "~> 5.0"
23
24 # Use Uglifier as compressor for JavaScript assets
25 gem "uglifier", ">= 1.3.0"
26
27 # Use CoffeeScript for .js.coffee assets and views
28 gem "coffee-rails", "~> 4.1.0"
29
30 # Use jquery as the JavaScript library
31 gem "jquery-rails"
32
33 # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
34 # gem 'jbuilder', '~> 2.0'
35 gem "jsonify-rails"
36
37 # Use R2 for RTL conversion
38 gem "r2"
39
40 # Use autoprefixer to generate CSS prefixes
41 gem "autoprefixer-rails"
42
43 # Load rails plugins
44 gem "rails-i18n", "~> 4.0.0"
45 gem "dynamic_form"
46 gem "rinku", ">= 1.2.2", :require => "rails_rinku"
47 gem "oauth-plugin", ">= 0.5.1"
48 gem "validates_email_format_of", ">= 1.5.1"
49 gem "composite_primary_keys", "~> 8.1.0"
50 gem "http_accept_language", "~> 2.0.0"
51 gem "paperclip", "~> 4.0"
52 gem "deadlock_retry", ">= 1.2.0"
53 gem "openstreetmap-i18n-js", ">= 3.0.0.rc5.3", :require => "i18n-js"
54 gem "rack-cors"
55 gem "actionpack-page_caching"
56
57 # Omniauth for authentication
58 gem "omniauth"
59 gem "omniauth-openid"
60 gem "openstreetmap-omniauth-google-oauth2", ">= 0.2.6.1", :require => "omniauth-google-oauth2"
61 gem "omniauth-facebook"
62 gem "omniauth-windowslive"
63
64 # Markdown formatting support
65 gem "redcarpet"
66
67 # Load libxml support for XML parsing and generation
68 gem "libxml-ruby", ">= 2.0.5", :require => "libxml"
69
70 # Use for HTML sanitisation
71 gem "sanitize"
72 gem "htmlentities"
73
74 # Load SystemTimer for implementing request timeouts
75 gem "SystemTimer", ">= 1.1.3", :require => "system_timer", :platforms => :ruby_18
76
77 # Load faraday for mockable HTTP client
78 gem "faraday"
79
80 # Load httpclient and soap4r for SOAP support for Quova GeoIP queries
81 gem "httpclient"
82 gem "soap4r-ruby1.9"
83
84 # Load memcache client in case we are using it
85 gem "dalli"
86 gem "kgio"
87
88 # Gems useful for development
89 group :development do
90   gem "vendorer"
91 end
92
93 # Gems needed for running tests
94 group :test do
95   gem "rubocop"
96   gem "timecop"
97   gem "minitest", "~> 5.1", :platforms => [:ruby_19, :ruby_20]
98 end
99
100 # Needed in development as well so rake can see konacha tasks
101 group :development, :test do
102   gem "jshint"
103   gem "konacha"
104   gem "poltergeist"
105   gem "coveralls", :require => false
106 end