forked from mconf/mconf-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (57 loc) · 1.72 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
source 'http://rubygems.org'
gem 'rails', '~> 3.0.3'
gem "rake", "0.8.7"
gem "will_paginate", "~> 3.0.pre2"
gem 'teambox-permalink_fu', :git => 'git://github.com/mconf/permalink_fu.git'
gem 'jquery-rails', '>= 0.2.6'
gem 'vpim'
gem 'ruby-openid'
gem 'atom-tools'
gem 'rcov'
gem 'chronic'
gem 'hpricot'
gem 'feed-normalizer'
gem 'hoe'
gem 'httparty'
gem 'pdf-writer'
gem 'ci_reporter'
gem 'nokogiri', '1.4.1'
gem 'prism'
gem 'rubyzip' # TODO: see rubyzip2
gem 'garb'
gem 'simple_captcha', :git => 'git://github.com/galetahub/simple-captcha.git'
gem 'rmagick', :git => 'git://github.com/rmagick/rmagick.git', :require => false
gem 'fckeditor'
gem 'dynamic_form'
gem 'bigbluebutton-api-ruby', :git => 'git://github.com/mconf/bigbluebutton-api-ruby.git'
gem 'bigbluebutton_rails', :git => 'git://github.com/mconf/bigbluebutton_rails.git'
gem 'rspec-rails', '~> 2.5'
gem 'action_mailer_tls'
gem 'attachment_fu', :git => 'git://github.com/mconf/attachment_fu.git'
gem 'yaml_db'
gem 'delayed_job'
gem 'mysql2', '~> 0.2.0' # must use 0.2.x releases in Rails <= 3.0.x
# not the official repo, but has fixes to use it with rails 3
gem 'table_helper', :git => 'git://github.com/echen/table_helper.git'
group :development do
#gem 'ruby-debug19', :require => 'ruby-debug'
gem 'capistrano', '~> 2.5'
gem 'capistrano-ext'
gem 'translate-rails3', :require => 'translate', :git => 'git://github.com/mconf/translate.git'
end
group :development, :test do
gem 'populator'
gem 'ffaker'
gem 'factory_girl'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'webrat'
gem 'rspec-instafail'
gem 'fuubar'
gem 'shoulda-matchers'
gem 'htmlentities'
end
group :production do
gem 'god', '0.11.0'
gem 'passenger', '3.0.7'
gem 'exception_notification'
end