]> git.openstreetmap.org Git - rails.git/blob - Gemfile
5ef0eb9a33278681dc634e084a138e66d607c4af
[rails.git] / Gemfile
1 source "https://rubygems.org"
2
3 # Require rails
4 gem "rails", "4.2.7.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 "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", ">= 0.22.0"
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 # Sanitise URIs
58 gem "rack-uri_sanitizer"
59
60 # Omniauth for authentication
61 gem "omniauth"
62 gem "omniauth-openid"
63 gem "omniauth-google-oauth2", ">= 0.2.7"
64 gem "omniauth-facebook"
65 gem "omniauth-windowslive"
66 gem "omniauth-github"
67
68 # Markdown formatting support
69 gem "redcarpet"
70
71 # Load libxml support for XML parsing and generation
72 gem "libxml-ruby", ">= 2.0.5", :require => "libxml"
73
74 # Use for HTML sanitisation
75 gem "sanitize"
76 gem "htmlentities"
77
78 # Load SystemTimer for implementing request timeouts
79 gem "SystemTimer", ">= 1.1.3", :require => "system_timer", :platforms => :ruby_18
80
81 # Load faraday for mockable HTTP client
82 gem "faraday"
83
84 # Load httpclient and soap4r for SOAP support for Quova GeoIP queries
85 gem "httpclient"
86 gem "soap4r-ruby1.9"
87
88 # Load memcache client in case we are using it
89 gem "dalli"
90 gem "kgio"
91
92 # Used to generate logstash friendly log files
93 gem "logstasher"
94
95 # Gems useful for development
96 group :development do
97   gem "vendorer"
98 end
99
100 # Gems needed for running tests
101 group :test do
102   gem "rubocop"
103   gem "timecop"
104   gem "minitest", "~> 5.1", :platforms => [:ruby_19, :ruby_20]
105 end
106
107 # Needed in development as well so rake can see konacha tasks
108 group :development, :test do
109   gem "jshint"
110   gem "konacha"
111   gem "poltergeist"
112   gem "factory_girl_rails"
113   gem "coveralls", :require => false
114 end