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
63
64
65
66
67
68
69
|
--- Gemfile.orig 2013-10-20 20:14:01 UTC
+++ Gemfile
@@ -8,64 +8,11 @@ deps = Hash.new
rails3 = Gem::Dependency.new('rails', '~>3.0')
RAILS_VERSION_IS_3 = rails3 =~ deps['rails']
-gem "holidays", "~>1.0.3"
+gem "holidays", ">=1.0.3"
gem "icalendar"
-gem "nokogiri", "< 1.6.0"
+gem "nokogiri"
gem "open-uri-cached"
gem "prawn"
gem 'json'
gem "system_timer" if RUBY_VERSION =~ /^1\.8\./ && RUBY_PLATFORM =~ /darwin|linux/
-group :development do
- gem "inifile"
-end
-
-group :test do
- gem 'chronic'
- gem 'ZenTest', "=4.5.0" # 4.6.0 has a nasty bug that breaks autotest
- gem 'autotest-rails'
- if RAILS_VERSION_IS_3
- unless chiliproject
- gem 'capybara', "~> 1.1" if ENV['IN_RBL_TESTENV'] == 'true' # redmine 2.3 conflicts
- gem "faye-websocket", "~>0.4.7"
- gem "poltergeist", "~>1.0"
- end
- gem 'cucumber-rails'
- gem "culerity"
- else
- unless chiliproject
- gem "capybara", "~>1.1.0"
- gem "poltergeist", "~>0.6.0"
- end
- gem "cucumber", "=1.1.0"
- gem 'cucumber-rails2', "~> 0.3.5"
- gem "culerity", "=0.2.15"
- end
- gem "database_cleaner"
- if RAILS_VERSION_IS_3
- gem "gherkin", "~> 2.6"
- else
- gem "gherkin", "~> 2.5.0"
- end
- gem "redgreen" if RUBY_VERSION < "1.9"
- if RAILS_VERSION_IS_3
- gem "rspec", '~>2.11.0'
- gem "rspec-rails", '~> 2.11.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", "=0.9.11"
- end
- gem "ruby-prof", :platforms => [:ruby]
- gem "spork"
- gem "test-unit", "=1.2.3" if RUBY_VERSION >= "1.9" and ENV['IN_RBL_TESTENV'] == 'true'
- gem "timecop", '~> 0.3.5'
-end
-
-# moved out of the dev group so backlogs can be tested by the user after install. Too many issues of weird setups with apache, nginx, etc.
-# thin doesn't work for jruby
-gem "thin", :platforms => [:ruby]
|