forked from professor/whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
86 lines (59 loc) · 2.09 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
source 'http://rubygems.org'
gem "rake", "0.8.7" #As of 7/28/2011, this is needed for "heroku rake db:migrate"
gem 'thin'
gem "daemons", "~> 1.1.4" #this is used by heroku on 7/18/2011
gem 'rails', '3.0.9'
gem 'jquery-rails', '>= 1.0.3'
gem 'aws-s3'
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 'omniauth', '0.3.0.rc3'
gem 'devise'
#gem 'ruby-openid'
#gem 'ruby-openid-apps-discovery'
#gem 'rack-openid'
gem 'bundler'
gem 'delayed_job' #, '2.1.0.pre'
gem 'indextank'
#gem 'oauth'
gem 'heroku'
gem 'paperclip'
gem 'vestal_versions', :git => 'git://github.com/adamcooper/vestal_versions'
gem 'acts_as_versioned'
gem 'acts_as_list'
gem 'rmagick'
gem 'exception_notification', :require => 'exception_notifier'
gem 'pg'
# gem 'smtp_tls' # Used for sending mail to gmail
# gem 'actionmailer_gmail' # Used for sending mail to gmail
group :production do
gem 'thin'
gem "daemons", "~> 1.1.4" #this is used by heroku on 7/18/2011
gem 'newrelic_rpm'
#gem 'daemons 1.1.4' #this is used by heroku on 7/18/2011
gem 'rack-google_analytics', :require => "rack/google_analytics"
gem 'rcov' #This should not be necessary, but it's used by the Rakefile and it needs to be removed
end
group :development, :test do
# gem 'mongrel', '>= 1.2.0.pre2', :require => nil
gem 'taps'
# gem 'rake'
gem 'ruby-debug19'
gem 'ruby-debug-base19x'
gem 'ruby-debug-ide' #'0.4.6'
gem 'shoulda'
# gem 'hanna'
gem 'rcov'
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 'mocha'
gem 'factory_girl', '2.0.2'
gem 'factory_girl_rails', '1.1.0'
gem 'capybara'
# gem 'morning_glory'
# gem 'autotest-rails' if RUBY_PLATFORM =~ /darwin/
# gem "autotest-fsevent" if RUBY_PLATFORM =~ /darwin/
# gem 'autotest-growl' if RUBY_PLATFORM =~ /darwin/
# gem 'test-unit' #, '1.2.3' #Downgrading so that autotest, rspec will work
end
#gem 'gchartrb'