This repository has been archived by the owner on Apr 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (58 loc) · 1.37 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
source 'http://rubygems.org'
gem 'rails'
gem 'haml'
gem 'will_paginate', '~> 3.0.pre2'
gem 'formtastic'
gem 'http_accept_language'
# custom error pages
gem 'goalie'
gem 'rad_directory', :git => 'git://github.com/ericcf/rad_directory.git'
#gem 'rad_directory', :path => "/Users/ericcf/projects/rad_directory"
# required by Rad Directory
gem 'rack-cache', :require => 'rack/cache'
gem 'dragonfly'
gem 'friendly_id'
# authentication/authorization
gem 'deadbolt', :git => 'git://github.com/ericcf/deadbolt.git'
gem 'devise'
gem 'cancan'
# Gmail interaction
gem 'tlsmail'
# Excel export
gem 'ekuseru'
# Excel import (roo and dependencies)
#gem 'roo'
#gem 'zip'
#gem 'google-spreadsheet-ruby'
# iCalendar import/export
gem 'vpim'
gem 'icalendar'
# Deployment
gem 'capistrano'
gem 'exception_notification', :git => 'git://github.com/rails/exception_notification', :require => 'exception_notifier'
group :development, :test do
gem 'mysql2'
gem 'mongrel', '= 1.2.0.pre2'
gem 'launchy'
gem 'rspec-rails'
if RUBY_VERSION =~ /1.9/
gem 'ruby-debug19', :require => 'ruby-debug'
end
end
group :development do
gem 'haml-rails'
gem 'metric_fu'
end
group :test do
gem 'simplecov'
gem 'autotest-standalone'
gem 'autotest-growl'
gem 'database_cleaner'
gem 'selenium-client'
gem 'cucumber-rails'
gem 'cucumber'
gem 'webrat'
gem 'capybara'
gem 'shoulda'
gem 'jasmine'
end