freebsd-ports/www/redmine-backlogs/files/patch-Gemfile
Steve Wills d5864ecd7e - Update to 1.0.2
PR:		ports/179389
Approved by:	pgollucci (maintainer)
2013-06-07 19:19:48 +00:00

59 lines
1.7 KiB
Text

--- Gemfile.orig 2013-06-07 03:50:59.578135079 +0000
+++ Gemfile 2013-06-07 03:51:08.336134703 +0000
@@ -16,56 +16,3 @@
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]