forked from openaustralia/planningalerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (60 loc) · 1.85 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source :rubygems
gem 'rails', '3.0.19'
gem "capistrano"
# Need to use older version of mysql2 because we're on Rails 3.0
gem "mysql2", "~> 0.2.7"
gem "haml"
# Latest release of geokit at this time (1.6.5) doesn't yet contain support for Google Maps Business API
# and HEAD of the project has broken Ruby 1.8 support so backported the Google Maps Business API changes
# on to geokit 1.6.5.
gem "geokit", :git => "https://github.com/mlandauer/geokit.git", :branch => "back_port_google_maps_business_api"
gem "nokogiri"
gem "foreigner"
gem 'httparty'
gem "will_paginate"
# For minifying javascript and css
gem 'smurf'
gem 'thinking-sphinx', :require => 'thinking_sphinx'
# Locking version of formtastic to sidestep bug in activeadmin
gem "formtastic", "~> 2.1.1"
gem 'validates_email_format_of'
gem "compass-rails"
gem 'fancy-buttons'
# Use Matthew's fork that includes bounding box optimisation for distance queries
gem "geocoder", :require => "geocoder", :git => "https://github.com/mlandauer/geocoder.git", :branch => "bounding_box"
gem 'activeadmin'
# Disabling metric_fu because it depends on rcov which doesn't work on Ruby 1.9
#gem 'metric_fu'
gem "rake"
gem 'exception_notification'
gem 'rack-throttle'
gem 'memcached'
gem 'sanitize'
gem 'rvm-capistrano'
gem 'vanity'
gem 'rabl'
gem "susy"
gem 'newrelic_rpm'
gem 'delayed_job_active_record'
gem 'daemons'
group :test do
gem 'cucumber-rails', :require => false
# Using Capybara for integration testing. Also including Webrat so we have
# access to the matchers in view tests.
gem 'capybara'
gem 'webrat'
gem 'database_cleaner'
gem 'factory_girl_rails'
# factory_girl 3.x requires Ruby 1.9
gem 'factory_girl', '< 3.0'
gem 'email_spec'
end
group :development do
gem 'guard'
gem 'guard-rspec'
gem 'guard-livereload'
gem 'rack-livereload'
end
group :test, :development do
gem 'rspec-rails', '~> 2.4'
end