Gemfile
1 KB
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
source "https://rubygems.org"
gem 'rails'
gem 'fast_gettext'
gem 'acts-as-taggable-on'
gem 'prototype-rails'
gem 'prototype_legacy_helper', '0.0.0', :path => 'vendor/prototype_legacy_helper'
gem 'rails_autolink'
gem 'pg'
gem 'rmagick'
gem 'RedCloth'
gem 'will_paginate'
gem 'ruby-feedparser'
gem 'daemons'
gem 'thin'
gem 'hpricot'
gem 'nokogiri'
gem 'rake', :require => false
gem 'rest-client'
# FIXME list here all actual dependencies (i.e. the ones in debian/control),
# with their GEM names (not the Debian package names)
group :production do
gem 'dalli'
end
group :test do
gem 'rspec'
gem 'rspec-rails'
gem 'mocha', :require => false
end
group :cucumber do
gem 'rake'
gem 'cucumber-rails', :require => false
gem 'capybara'
gem 'cucumber'
gem 'database_cleaner'
gem 'selenium-webdriver'
end
# include plugin gemfiles
Dir.glob(File.join('config', 'plugins', '*')).each do |plugin|
plugin_gemfile = File.join(plugin, 'Gemfile')
eval File.read(plugin_gemfile) if File.exists?(plugin_gemfile)
end