-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
46 lines (38 loc) · 834 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.2.17'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'libxml-ruby', '>= 2.0.5'
gem 'activerecord-postgis-adapter'
gem 'activerecord-postgres-hstore'
gem 'haml-rails'
gem 'formtastic'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'rgeo-geojson'
gem 'devise'
gem 'declarative_authorization'
gem 'jquery-rails'
group :development do
gem 'annotate', '>= 2.5.0', :require => false
gem 'bullet'
end
group :development, :test do
# IRB helpers
gem 'wirble'
gem 'hirb'
gem 'rspec-core'
gem 'rspec-rails'
gem 'spork'
gem 'ruby-prof'
end
group :test do
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'launchy'
gem 'capybara'
gem 'email_spec'
gem 'database_cleaner'
gem 'rspec-expectations'
end