ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

chili-mingw-1.8.7-gemfile.diff

Toshi MARUYAMA, 2012-02-06 06:50 am

Download (1.1 kB)

 
b/Gemfile
14 14
  gem 'edavis10-object_daddy', :require => 'object_daddy'
15 15
  gem 'mocha'
16 16

  
17
  platforms :mri_18, :mingw_18 do gem 'ruby-debug' end
18
  platforms :mri_19, :mingw_19 do gem 'ruby-debug19', :require => 'ruby-debug' end
17
  platforms :mri_18 do gem 'ruby-debug' end
18
  platforms :mri_19 do gem 'ruby-debug19', :require => 'ruby-debug' end
19 19
end
20 20

  
21 21
group :ldap do
b/Gemfile
5 5
gem "coderay", "~> 0.9.7"
6 6
gem "i18n", "~> 0.4.2"
7 7
gem "rubytree", "~> 0.5.2", :require => 'tree'
8
gem "rdoc", ">= 2.4.2"
8

  
9
platforms :mri do
10
  gem "rdoc", ">= 2.4.2"
11
end
12

  
9 13
# Needed only on RUBY_VERSION = 1.8, ruby 1.9+ compatible interpreters should bring their csv
10 14
gem "fastercsv", "~> 1.5.0", :platforms => [:ruby_18, :jruby, :mingw_18]
11 15