]> git.openstreetmap.org Git - rails.git/blob - Gemfile
Add ferry routing information for OSRM
[rails.git] / Gemfile
1 source "https://rubygems.org"
2
3 # Require rails
4 gem "rails", "4.2.4"
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 "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.1.0"
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 # Use R2 for RTL conversion
35 gem "r2"
36
37 # Use autoprefixer to generate CSS prefixes
38 gem "autoprefixer-rails"
39
40 # Use image_optim to optimise images
41 gem "image_optim"
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 "i18n-js", ">= 3.0.0.rc10"
54 gem "rack-cors"
55 gem "actionpack-page_caching"
56
57 # Omniauth for authentication
58 gem "omniauth"
59 gem "omniauth-openid"
60 gem "omniauth-google-oauth2", ">= 0.2.7"
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 # Used to generate logstash friendly log files
89 gem "logstasher"
90
91 # Gems useful for development
92 group :development do
93   gem "vendorer"
94 end
95
96 # Gems needed for running tests
97 group :test do
98   gem "rubocop"
99   gem "timecop"
100   gem "minitest", "~> 5.1", :platforms => [:ruby_19, :ruby_20]
101 end
102
103 # Needed in development as well so rake can see konacha tasks
104 group :development, :test do
105   gem "jshint"
106   gem "konacha"
107   gem "poltergeist"
108   gem "coveralls", :require => false
109 end