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
source "https://rubygems.org"
gem 'rails'
gem 'fast_gettext'
gem 'acts-as-taggable-on'
gem 'prototype-rails'
gem 'prototype_legacy_helper', '0.0.0', :git => 'http://git.github.com/rails/prototype_legacy_helper.git'
gem 'rails_autolink'
gem 'pg'
# TODO needs a rebuild diff-lcs wrt wheezy
# FIXME list here all actual dependencies (i.e. the ones in debian/control),
# with their GEM names (not the Debian package names)
group :test do
gem 'rspec'
gem 'rspec-rails'
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
def program(name)
unless system("which #{name} > /dev/null")
puts "W: Program #{name} is needed, but was not found in your PATH"
end
end
program 'java'
program 'firefox'