forked from openaustralia/planningalerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (39 loc) · 1.2 KB
/
Gemfile
File metadata and controls
43 lines (39 loc) · 1.2 KB
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
#source 'http://rubygems.org'
source "http://gemcutter.org"
source "http://gems.github.com"
gem 'rails', '3.0.7'
gem "capistrano"
gem "mysql"
gem "haml"
gem "geokit"
gem "nokogiri"
gem "foreigner"
#gem 'addthis', :git => 'git://github.com/jaap3/addthis.git'
gem 'httparty'
gem "will_paginate", "~> 3.0.pre2"
# For minifying javascript and css
gem 'smurf'
gem 'thinking-sphinx', '2.0.0', :require => 'thinking_sphinx'
gem 'formtastic', '~> 1.1.0'
gem 'validates_email_format_of', :git => 'git://github.com/alexdunae/validates_email_format_of.git'
gem "compass", ">= 0.10.6"
gem 'fancy-buttons'
gem "rails-geocoder", :require => "geocoder"
gem 'devise' # Devise must be required before RailsAdmin
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem 'metric_fu'
# See http://stackoverflow.com/questions/6199301/global-access-to-rake-dsl-methods-is-deprecated
gem "rake", "0.8.7"
group :test do
gem 'cucumber-rails'
# 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'
gem 'email_spec'
end
group :test, :development do
gem 'rspec-rails', '~> 2.4'
end