forked from opencongress/opencongress
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
110 lines (78 loc) · 1.84 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
106
107
108
109
source 'http://rubygems.org'
gem 'rails', '3.0.19'
gem 'rake', '0.8.7'
# database gems -- need both pg and mysql for app and wiki
gem 'pg'
gem 'mysql'
gem "settingslogic"
# HAML support
gem "haml"
gem "haml-rails"
# RABL for API / JSON
gem 'rabl'
# Background tasks
gem 'delayed_job', '~> 2.1'
# RMagick
gem 'rmagick', '2.13.1'
gem "galetahub-simple_captcha", :require => "simple_captcha"
#gem 'simple_captcha'# , :git => 'git://github.com/galetahub/simple-captcha.git'
# Image uploads
gem 'carrierwave'
gem 'fog'
# GovKit
gem "govkit"
# jammit support
gem "jammit"
gem "closure-compiler"
# paperclip -- for attaching files to requests
gem 'paperclip'
# notifier for production errors
gem "airbrake"
gem "xray", :require => "xray/thread_dump_signal_handler"
# OpenID
gem 'ruby-openid'
gem 'rack-openid'
# JSONP middleware
gem 'rack-contrib'
# memcache
gem 'memcache-client'
# markup tools and parsers
gem 'simple-rss'
gem 'mediacloth'
gem 'hpricot'
gem 'RedCloth'
gem 'bluecloth'
gem 'htmlentities'
gem "json"
gem "nokogiri"
# spam protection
gem "defender"
group :deployment do
gem 'capistrano'
gem 'capistrano-ext'
end
# new relic RPM
gem 'newrelic_rpm'
# oauth
gem 'oauth'
gem 'facebooker2'
gem 'will_paginate', '~> 3.0.pre2'
gem "validates_captcha"
gem "okkez-open_id_authentication"
gem "acts-as-taggable-on", :git => 'git://github.com/mbleigh/acts-as-taggable-on.git'
gem 'mechanize'
#gem 'formageddon', '0.0.0', :require => 'formageddon', :path => '/Users/aross/Sites/formageddon'
gem 'formageddon', :git => 'git://github.com/opencongress/formageddon.git'
group :test, :development do
gem 'autotest'
gem 'silent-postgres' # Quieter postgres log messages
gem 'rspec-rails', '~> 2.4'
gem 'cucumber'
gem 'cucumber-rails'
gem 'webrat'
gem 'selenium-client'
gem 'capybara'
gem 'autotest'
gem 'guard'
gem 'guard-livereload'
end