X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/36cbda3c80beac9496316389d4f082383ed4322a..3b26ff0c40fa127e0d0732bce3d7116e2fa7695d:/Gemfile diff --git a/Gemfile b/Gemfile index e63bd60c7..5e6eebfc9 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source "https://rubygems.org" # Require rails -gem "rails", "4.2.4" +gem "rails", "4.2.7.1" # Require things which have moved to gems in ruby 1.9 gem "bigdecimal", "~> 1.1.0", :platforms => :ruby_19 @@ -38,7 +38,7 @@ gem "r2" gem "autoprefixer-rails" # Use image_optim to optimise images -gem "image_optim" +gem "image_optim_rails" # Load rails plugins gem "rails-i18n", "~> 4.0.0" @@ -54,12 +54,17 @@ gem "i18n-js", ">= 3.0.0.rc10" gem "rack-cors" gem "actionpack-page_caching" +# Sanitise URIs +gem "rack-uri_sanitizer" + # Omniauth for authentication gem "omniauth" gem "omniauth-openid" -gem "openstreetmap-omniauth-google-oauth2", ">= 0.2.6.1", :require => "omniauth-google-oauth2" +gem "omniauth-google-oauth2", ">= 0.2.7" gem "omniauth-facebook" gem "omniauth-windowslive" +gem "omniauth-github" +gem "omniauth-mediawiki", ">= 0.0.3" # Markdown formatting support gem "redcarpet" @@ -77,9 +82,11 @@ gem "SystemTimer", ">= 1.1.3", :require => "system_timer", :platforms => :ruby_1 # Load faraday for mockable HTTP client gem "faraday" -# Load httpclient and soap4r for SOAP support for Quova GeoIP queries -gem "httpclient" -gem "soap4r-ruby1.9" +# Load geoip for querying Maxmind GeoIP database +gem "geoip" + +# Load rotp to generate TOTP tokens +gem "rotp" # Load memcache client in case we are using it gem "dalli" @@ -98,6 +105,7 @@ group :test do gem "rubocop" gem "timecop" gem "minitest", "~> 5.1", :platforms => [:ruby_19, :ruby_20] + gem "webmock" end # Needed in development as well so rake can see konacha tasks @@ -105,5 +113,6 @@ group :development, :test do gem "jshint" gem "konacha" gem "poltergeist" + gem "factory_girl_rails" gem "coveralls", :require => false end