87 lines
2.5 KiB
Ruby
87 lines
2.5 KiB
Ruby
source :rubygems
|
|
|
|
gem 'rails', '2.3.11'
|
|
gem 'authlogic', '2.1.3'
|
|
gem 'aws-s3', '0.6.2', :require => 'aws/s3'
|
|
gem 'builder', '2.1.2'
|
|
gem 'compass', '0.10.5'
|
|
gem 'daemons', '1.1.0'
|
|
gem 'diff-lcs', '1.1.2', :require => 'diff/lcs'
|
|
gem 'erubis', '2.6.6'
|
|
gem 'facebooker', '1.0.75'
|
|
gem 'fastercsv', '1.5.3'
|
|
gem 'hairtrigger', '0.1.4'
|
|
gem 'haml', '3.0.22'
|
|
gem 'hashery', '1.3.0', :require => 'hashery/dictionary'
|
|
gem 'highline', '1.6.1'
|
|
gem 'hpricot', '0.8.2'
|
|
gem 'icalendar', '1.1.5'
|
|
gem 'jammit', '0.6.0'
|
|
gem 'json', '1.5.1'
|
|
# native xml parsing, diigo
|
|
gem 'libxml-ruby', '1.1.3', :require => 'xml/libxml'
|
|
gem 'mime-types', '1.16', :require => 'mime/types'
|
|
# attachment_fu (even the current technoweenie one on github) does not work
|
|
# with mini_magick 3.1
|
|
gem 'mini_magick', '1.3.2'
|
|
gem 'nokogiri', '1.4.1'
|
|
gem 'oauth', '0.3.4' # 0.3.6 breaks our integration with google docs
|
|
gem 'ratom', '0.6.7', :require => "atom"
|
|
gem 'rscribd', '1.2.0'
|
|
gem 'ruby-net-ldap', '0.0.4', :require => 'net/ldap'
|
|
gem 'ruby-saml-mod', '0.1.0'
|
|
gem 'rubyzip', '0.9.4', :require => 'zip/zip'
|
|
gem 'rufus-scheduler','2.0.6'
|
|
gem 'sanitize', '1.2.1'
|
|
gem 'uuid', '2.3.1'
|
|
gem 'will_paginate', '2.3.15'
|
|
gem 'xml-simple', '1.0.12', :require => 'xmlsimple'
|
|
# this is only needed by jammit, but we're pinning at 0.9.4 because 0.9.5 breaks
|
|
gem 'yui-compressor', '0.9.4'
|
|
|
|
group :mysql do
|
|
gem 'mysql', '2.8.1'
|
|
end
|
|
|
|
group :postgres do
|
|
gem 'pg', '0.10.1'
|
|
end
|
|
|
|
group :test do
|
|
gem 'bluecloth', '2.0.10' # for generating api docs
|
|
gem 'rcov', '0.9.9'
|
|
gem 'rspec', '1.3.1'
|
|
gem 'rspec-rails', '1.3.3'
|
|
gem 'selenium-webdriver', '0.1.3'
|
|
gem 'sqlite3-ruby', '1.3.2'
|
|
gem 'webrat', '0.7.2'
|
|
gem 'yard', '0.6.3'
|
|
end
|
|
|
|
group :development do
|
|
gem 'ruby-debug', '0.10.4'
|
|
end
|
|
|
|
group :redis do
|
|
gem 'redis-store', '1.0.0.beta4'
|
|
end
|
|
|
|
# The closure-compiler gem has an undocumented
|
|
# gem dependency on windows with ruby < 1.9. I'm
|
|
# working to get this fixed in the gem itself, but
|
|
# in the mean time this needs to be here to make
|
|
# things work on windows.
|
|
WINDOWS = RUBY_PLATFORM.match(/(win|w)32$/)
|
|
ONE_NINE = RUBY_VERSION >= "1.9"
|
|
if WINDOWS
|
|
if !ONE_NINE
|
|
gem 'win32-open3', '0.3.2'
|
|
end
|
|
end
|
|
|
|
# Non-standard Canvas extension to Bundler behavior -- load the Gemfiles from
|
|
# plugins.
|
|
Dir[File.join(File.dirname(__FILE__),'vendor/plugins/*/Gemfile')].each do |g|
|
|
eval(File.read(g))
|
|
end
|