-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (61 loc) · 1.5 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
source 'http://rubygems.org'
gem 'rails', "3.1.1"
gem 'rake'
gem 'pg'
gem 'will_paginate', '~> 3.0.pre2'
gem 'enumerated_attribute'
gem 'devise', '~>1.4.2'
gem 'cancan'
gem 'jquery-rails', '>= 0.2.6'
gem 'annotate'
gem 'paperclip'
gem 'aws-s3'
gem 'omniauth', '~>0.3.2'
gem 'oa-openid', :require => 'omniauth/openid'
gem 'heroku'
gem 'geokit'
gem 'tiny_mce'
gem 'haml'
gem 'dynamic_form'
gem 'ruby-openid'
gem 'ruby-openid-apps-discovery'
gem 'htmlentities'
gem 'scribd_fu'
gem 'acts_as_commentable'
gem 'acts_as_votable',:git =>"http://github.com/jbgutierrez/acts_as_votable.git"
gem 'client_side_validations'
gem 'cocoon'
gem 'heroku_backup_task'
gem 'hoptoad_notifier'
gem 'tinymce-rails'
gem 'thin'
# gem 'gdata', git: 'https://github.com/agentrock/gdata.git'
# gem 'contacts', git: 'https://github.com/agentrock/contacts.git'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "~> 3.1.4"
gem 'coffee-rails', "~> 3.1.1"
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'rspec-rails'
gem 'gmail'
gem 'faker'
gem 'ruby-debug19', :require=>'ruby-debug'
#gem 'rails-dev-tweaks', '~> 0.5.2'
#gem 'rack-perftools_profiler', :require => 'rack/perftools_profiler'
end
group :test do
gem 'rspec'
gem 'spork'
gem 'factory_girl_rails'
gem 'cucumber-rails'
gem 'cucumber-api-steps'
gem 'capybara', "~> 1.0.1"
gem 'database_cleaner'
gem 'launchy'
gem 'email_spec'
gem "selenium-webdriver", "~> 2.5.0"
gem 'gmail'
end