-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
95 lines (69 loc) · 2.32 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
source 'http://rubygems.org'
ruby '1.9.3'
#test
gem "rake"
gem 'unicorn'
gem 'rails', '3.1.12'
group :assets do
gem 'sass-rails', "~> 3.1.5"
gem 'coffee-rails', "~> 3.1.1"
gem 'uglifier', ">= 1.0.3"
gem 'asset_sync'
end
gem 'jquery-rails', '>= 1.0.3'
gem 'aws-sdk'
gem 'mechanize'
#gem "webrobots", "~> 0.0.10", :git => 'git://github.com/knu/webrobots.git' #As of 7/1/2011, 0.0.10 was broken -- this is used by mechanize, when it works, remove this line
gem "webrobots", "~> 0.1.1"
gem 'omniauth', '1.1.4'
#gem 'omniauth-google-apps', :git => 'git://github.com/sishen/omniauth-google-apps.git'
gem "omniauth-google-apps", "~> 0.1.0"
gem 'devise'
gem 'ckeditor_rails'
gem "bundler", "~> 1.5.3"
gem 'delayed_job', '2.1.4'
gem 'indextank'
gem 'paperclip', '2.5.0'
gem 'vestal_versions', :git => 'git://github.com/laserlemon/vestal_versions'
gem 'acts_as_versioned', :git => 'https://github.com/jwhitehorn/acts_as_versioned.git'
gem 'acts_as_list'
gem 'rmagick'
gem 'exception_notification'
gem 'pg'
gem 'net-ldap'
gem "recaptcha", :require => "recaptcha/rails"
gem 'cancan'
gem 'vpim' # user for exporting contacts to vCard and iCalendar support
gem 'seedbank'
gem 'spreadsheet'
gem 'cocaine' , "0.3.2"
group :production do
gem 'thin'
gem "daemons", "~> 1.1.4" #this is used by heroku on 7/18/2011
gem 'newrelic_rpm'
gem 'rack-google_analytics', :require => "rack/google_analytics"
end
group :development, :test do
gem 'launchy'
gem 'taps'
gem 'travis'
gem 'foreman'
# see this link for details on which gem to install for debugger
# http://stackoverflow.com/questions/10323119/cannot-load-such-file-script-rails-getting-this-error-while-remote-debuggin/10325110#10325110
#gem 'ruby-debug-base19x'
#gem 'ruby-debug-ide'
#gem 'linecache19', '>= 0.5.13', :git => 'https://github.com/robmathews/linecache19-0.5.13.git'
gem 'ruby-debug-base19x', '>= 0.11.30.pre10'
gem 'ruby-debug-ide', '>= 0.4.17.beta14'
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'shoulda'
gem 'rspec'
gem 'rdoc' #, '2.4.3' #rdoc_rails required RDoc of 2.4.3 - http://stackoverflow.com/questions/2993435/rake-uninitialized-constant-rdocrdoc
gem 'rspec-rails'
gem 'factory_girl_rails', '3.4.0'
gem 'capybara', '1.1.1'
gem 'jasmine'
gem 'ladle', '~> 0.2.0'
gem 'selenium-webdriver'
gem 'rails_best_practices'
end