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.
ruby-debug19.diff
b/Gemfile | ||
---|---|---|
17 | 17 |
gem 'edavis10-object_daddy', :require => 'object_daddy' |
18 | 18 |
gem 'mocha' |
19 | 19 |
gem 'capybara' |
20 | ||
21 |
# cannot install on mingw due to fail installing linecache with native extensions |
|
22 |
platforms :mri_18 do gem 'ruby-debug' end |
|
23 |
platforms :mri_19 do |
|
24 |
# http://stackoverflow.com/questions/8251349/ruby-threadptr-data-type-error |
|
25 |
# gem 'ruby-debug19', :require => 'ruby-debug' |
|
26 |
gem 'linecache19', :git => 'git://github.com/mark-moseley/linecache' |
|
27 |
gem 'ruby-debug-base19x', '~> 0.11.30.pre4' |
|
28 |
gem 'ruby-debug19' |
|
29 |
end |
|
20 | 30 |
end |
21 | 31 | |
22 | 32 |
group :ldap do |
... | ... | |
108 | 118 |
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` |
109 | 119 |
instance_eval File.read(file) |
110 | 120 |
end |
111 |
end |
|
121 |
end |