source "https://rubygems.org" gem 'rails', '~> 3.2.19' gem 'fast_gettext', '~> 0.6.8' gem 'acts-as-taggable-on', '~> 3.0.2' gem 'prototype-rails', '~> 3.2.1' gem 'prototype_legacy_helper', '0.0.0', :path => 'vendor/prototype_legacy_helper' gem 'rails_autolink', '~> 1.1.5' gem 'pg', '~> 0.13.2' gem 'rmagick', '~> 2.13.1' gem 'RedCloth', '~> 4.2.9' gem 'will_paginate', '~> 3.0.3' gem 'ruby-feedparser', '~> 0.7' gem 'daemons', '~> 1.1.5' gem 'thin', '~> 1.3.1' gem 'hpricot', '~> 0.8.6' gem 'nokogiri', '~> 1.6.0' gem 'rake', :require => false gem 'grape', '~> 0.2.1' gem 'rest-client', '~> 1.6.7' gem 'exception_notification', '~> 4.0.1' gem 'gettext', '~> 2.2.1', :require => false, :group => :development gem 'locale', '~> 2.0.5' # FIXME list here all actual dependencies (i.e. the ones in debian/control), # with their GEM names (not the Debian package names) group :development do gem 'bullet' end group :production do gem 'dalli', '~> 2.7.0' end group :test do gem 'test-unit', '~> 1.2.3' gem 'rspec', '~> 2.10.0' gem 'rspec-rails', '~> 2.10.1' gem 'mocha', '~> 1.1.0', :require => false end group :cucumber do gem 'cucumber-rails', '~> 1.0.6', :require => false gem 'capybara', '~> 2.1.0' gem 'cucumber', '~> 1.0.6' gem 'database_cleaner', '~> 1.2.0' gem 'selenium-webdriver', '~> 2.39.0' end # include gemfiles from enabled plugins # plugins in baseplugins/ are not included on purpose. They should not have any # dependencies. Dir.glob('config/plugins/*/Gemfile').each do |gemfile| eval File.read(gemfile) end