forked from codeforamerica/schoolselection
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
59 lines (50 loc) · 1.04 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
source 'http://rubygems.org'
gem 'rails', '3.1.10'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Gems used only for assets and not required
# in production environments by default.
gem "activerecord-postgis-adapter"
gem "airbrake"
gem 'aws-s3'
gem 'bootstrap-sass'
gem "compass"
gem "devise"
gem 'dbf'
gem "geokit"
gem 'gmaps4rails', '<= 0.11.0'
gem "haml-rails"
gem 'heroku'
gem "high_voltage"
gem 'jquery-rails'
gem 'paperclip'
gem 'pg', :require => 'pg'
gem 'prawn'
gem "rgeo"
gem "rgeo-shapefile"
gem "rgeo-geojson", :require => 'rgeo/geo_json'
gem 'rails_admin', :git => 'git://github.com/joelmahoney/rails_admin.git'
gem "thin"
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :production do
gem 'newrelic_rpm'
end
group :development do
gem 'heroku'
gem 'taps'
gem 'rails3-generators'
gem 'nokogiri'
gem 'mechanize'
gem 'sqlite3'
end
group :test do
gem 'sqlite3'
gem "rspec"
gem "rspec-rails"
gem "factory_girl"
gem 'turn', :require => false
end