forked from gravitystorm/snapshot-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (43 loc) · 970 Bytes
/
Gemfile
File metadata and controls
52 lines (43 loc) · 970 Bytes
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
source 'http://rubygems.org'
gem 'rails', '3.1.10'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '0.18.4'
# gem 'libxml-ruby', '>= 2.0.5'
gem 'libxml-ruby'
gem 'activerecord-postgis-adapter'
gem 'activerecord-postgres-hstore'
gem 'haml-rails'
gem 'formtastic'
gem 'will_paginate'
gem 'bootstrap-will_paginate'
gem 'rgeo', '0.5.3'
gem 'rgeo-geojson'
gem 'public_suffix', '1.4.6'
gem 'nokogiri', '1.6.8.1'
gem 'sass', '3.4.25'
gem 'devise'
gem 'declarative_authorization'
gem 'jquery-rails'
group :development do
gem 'annotate', '>= 2.5.0', :require => false
gem 'bullet', '5.4.3'
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