forked from opengovernment/opengovernment
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
105 lines (83 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- ruby -*-
source 'http://rubygems.org'
gem 'rails'
gem 'rack-contrib'
gem 'SystemTimer'
# ActiveRecord requires a database adapter.
gem 'pg'
gem 'mongo_mapper'
gem 'bson_ext'
# Bulk data importing
gem 'activerecord-import'
# Rails.cache
gem 'memcache-client'
# gem 'memcached'
# Configuration/deploy management
gem 'settingslogic'
gem 'capistrano'
gem 'capistrano-ext'
gem 'whenever', :require => false
# An alternative form builder
gem 'formtastic', '~> 1.1.0'
# Authentication
gem 'devise'
gem 'ruby_parser'
# GIS & Geocoding
gem 'GeoRuby'
gem 'geokit'
gem 'geoip'
# Breadcrumbs & navigation
gem 'simple-navigation'
# Static pages
gem 'high_voltage'
# Background tasks
gem 'delayed_job', '~> 2.1'
# Attachments & assets
gem 'paperclip'
gem 'jammit'
gem 'docsplit'
# Views & Javascript
gem 'haml'
gem 'jquery-rails'
# Tagging
gem "acts-as-taggable-on", :git => 'http://github.com/mbleigh/acts-as-taggable-on.git'
# Importing & parsing stuff
gem 'httparty'
gem 'nokogiri'
gem 'chronic' # Complex date string parsing
gem 'json'
gem 'fastercsv'
# gem 'govkit', :git => 'git://github.com/opengovernment/govkit.git' (SUBMODULE)
# Indexing and Search
gem 'thinking-sphinx', '~> 2.0.3'
# Pagination
gem 'kaminari'
# Graphics
gem 'googlecharts', '~> 1.6.1', :require => 'gchart'
# Logging
gem 'hoptoad_notifier'
gem 'SyslogLogger'
group :development do
gem 'silent-postgres' # Quieter postgres log messages
gem 'rails_complete' # Rails console tab completion; see https://github.com/dasch/rails-complete for install instructions
gem 'hirb'
gem 'awesome_print'
end
# Bundle gems used only in certain environments:
group :test do
# Bundle gems for certain environments:
gem 'database_cleaner'
gem 'launchy' # So you can do "Then show me the page"
gem 'rspec-rails', '>= 2.0.0.rc'
gem 'spork'
gem 'capybara', '~> 0.4.1'
gem 'cucumber', '~> 0.10.0'
gem 'cucumber-rails', '~> 0.3.2'
gem 'autotest'
gem 'autotest-rails'
gem 'factory_girl_rails'
gem 'linecache'
gem 'ruby-debug'
gem 'vcr', '~> 1.5.1'
gem 'fakeweb', '~> 1.3.0'
end