forked from professor/whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (41 loc) · 1.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
source 'http://rubygems.org'
gem 'rails', '2.3.4'
gem 'aws-s3'
gem 'mechanize', '1.0.0'
gem 'ruby-openid'
gem 'ruby-openid-apps-discovery'
gem 'rack-openid'
gem 'bundler'
gem 'delayed_job', '2.1.0.pre'
gem 'oauth'
gem 'heroku'
gem 'taps'
group :plugins do
gem 'authlogic'
gem 'calendar_date_select'
end
# gem 'smtp_tls' # Used for sending mail to gmail
# gem 'actionmailer_gmail' # Used for sending mail to gmail
group :production do
# gem 'activerecord-postgresql-adapter'
end
group :development, :test do
gem 'rake'
gem 'mysql', '2.8.1'
gem 'mongrel'
gem 'ruby-debug-base' #'0.10.3'
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 'rspec'
gem 'factory_girl'
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'
end
#gem 'gchartrb'