]> git.openstreetmap.org Git - rails.git/blob - Gemfile
Use jsonify to create JSON for notes so that it is properly formatted
[rails.git] / Gemfile
1 # Gem source to use
2 source 'http://rubygems.org'
3
4 # Require rails
5 gem 'rails', '3.1.3'
6
7 # Require the postgres database driver
8 gem 'pg'
9
10 # Load jquery support
11 gem 'jquery-rails'
12
13 # Load rails plugins
14 gem 'rails-i18n-updater'
15 gem 'dynamic_form'
16 gem 'rinku', '>= 1.2.2', :require => 'rails_rinku'
17 gem 'oauth-plugin', '>= 0.4.0.pre7'
18 gem 'open_id_authentication', '>= 1.1.0'
19 gem 'validates_email_format_of', '>= 1.5.1'
20 gem 'composite_primary_keys', '>= 4.1.1'
21 gem 'jsonify-rails'
22
23 # Load libxml support for XML parsing and generation
24 gem 'libxml-ruby', '>= 2.0.5', :require => 'libxml'
25
26 # Load ImageMagick support for user picture resizing
27 gem 'rmagick', :require => 'RMagick'
28
29 # Load HTML sanitizer
30 gem 'sanitize'
31
32 # Load SystemTimer for implementing request timeouts
33 gem 'SystemTimer', '>= 1.1.3', :require => 'system_timer', :platforms => :ruby_18
34
35 # Load httpclient for SOAP support for Quova GeoIP queries
36 gem 'httpclient'
37
38 # Load memcache in case we are using it
39 gem 'memcache-client'
40 gem 'memcached'
41
42 # Gems needed for running tests
43 group :test do
44   gem 'timecop'
45 end
46
47 # Gems needed for compiling assets
48 group :assets do
49   gem 'sass-rails', "  ~> 3.1.0"
50   gem 'coffee-rails', "~> 3.1.0"
51   gem 'uglifier'
52   gem 'therubyracer'
53 end