forked from backlogs/redmine_backlogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
62 lines (58 loc) · 1.71 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
source :rubygems
chiliproject_file = File.dirname(__FILE__) + "/lib/chili_project.rb"
chiliproject = File.file?(chiliproject_file)
deps = Hash.new
@dependencies.map{|dep| deps[dep.name] = dep }
rails3 = Gem::Dependency.new('rails', '~>3.0')
RAILS_VERSION_IS_3 = rails3 =~ deps['rails']
gem "holidays", "=1.0.3"
gem "icalendar"
gem "nokogiri"
gem "open-uri-cached"
gem "prawn"
gem 'json'
gem "system_timer" if RUBY_VERSION =~ /^1\.8\./ && RUBY_PLATFORM =~ /darwin|linux/
#puts "RBL dev mode: " + File.join(File.expand_path(File.dirname(__FILE__)), 'backlogs.dev')
#if File.exist?(File.join(File.expand_path(File.dirname(__FILE__)), 'backlogs.dev')) # this is actually the main Gemfile
# development gems, sorted alphabetically
group :development do
gem 'ZenTest', "=4.5.0" # 4.6.0 has a nasty bug that breaks autotest
gem 'autotest-rails'
if RAILS_VERSION_IS_3
gem 'capybara' unless chiliproject
gem 'cucumber-rails'
gem "culerity"
else
unless chiliproject
gem "capybara", "~>1.1.0"
end
gem "cucumber", "=1.1.0"
gem 'cucumber-rails', :git => 'https://github.com/Vanuan/cucumber-rails.git', :branch => 'cucumber-rails2_v0.3.3'
gem "culerity", "=0.2.15"
end
gem "database_cleaner"
if RAILS_VERSION_IS_3
gem "gherkin", "=2.6.8"
gem 'hoe', '1.5.1'
else
gem "gherkin", "~> 2.5.0"
end
gem "poltergeist"
gem "redgreen" if RUBY_VERSION < "1.9"
if RAILS_VERSION_IS_3
gem "rspec", "=2.5.0"
gem "rspec-rails", "=2.5.0"
else
gem "rspec", "=1.3.1"
gem "rspec-rails", "=1.3.3"
end
if RUBY_VERSION >= "1.9"
gem "simplecov", "~>0.6"
else
gem "rcov"
end
gem "spork"
gem "test-unit", "=1.2.3" if RUBY_VERSION >= "1.9"
gem "timecop"
gem "thin"
end