forked from backlogs/redmine_backlogs
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
43 lines (39 loc) · 1.24 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
redmine_version_file = File.expand_path("../../../lib/redmine/version.rb",__FILE__)
if (!File.exists? redmine_version_file)
redmine_version_file = File.expand_path("lib/redmine/version.rb");
end
version_file = IO.read(redmine_version_file)
redmine_version_minor = version_file.match(/MINOR =/).post_match.match(/\d/)[0].to_i
redmine_version_major = version_file.match(/MAJOR =/).post_match.match(/\d/)[0].to_i
gem "holidays", "~>1.0.3"
gem "icalendar"
gem "nokogiri"
gem "open-uri-cached"
gem "prawn"
gem 'json'
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'
#gem 'cucumber-rails', '~>1.4.0', require: false
gem 'cucumber-rails', require: false
gem "culerity"
gem "cucumber"
gem "capybara", "~> 1"
#gem "faye-websocket"
gem "poltergeist"
gem "database_cleaner"
gem "gherkin"
gem "rspec"
gem "rspec-rails"
gem "ruby-prof", :platforms => [:ruby]
gem "spork"
gem "test-unit", "=1.2.3"
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]