Merge branch 'release-v2.7.0' into stable
Showing
- Gemfile 7 additions, 7 deletionsGemfile
- app/models/attachment.rb 2 additions, 1 deletionapp/models/attachment.rb
- app/models/journal_observer.rb 18 additions, 2 deletionsapp/models/journal_observer.rb
- app/models/message.rb 2 additions, 1 deletionapp/models/message.rb
- app/models/repository.rb 8 additions, 0 deletionsapp/models/repository.rb
- config.ru 0 additions, 5 deletionsconfig.ru
- config/environment.rb 4 additions, 1 deletionconfig/environment.rb
- db/migrate/20120131142400_remove_noisy_attachment_journals.rb 12 additions, 7 deletions...igrate/20120131142400_remove_noisy_attachment_journals.rb
- db/migrate/20120131142401_remove_noisy_message_journals.rb 32 additions, 0 deletionsdb/migrate/20120131142401_remove_noisy_message_journals.rb
- doc/CHANGELOG.rdoc 11 additions, 0 deletionsdoc/CHANGELOG.rdoc
- lib/chili_project/version.rb 1 addition, 1 deletionlib/chili_project/version.rb
- test/unit/attachment_test.rb 21 additions, 1 deletiontest/unit/attachment_test.rb
- test/unit/message_test.rb 5 additions, 1 deletiontest/unit/message_test.rb
... | ... | @@ -13,9 +13,7 @@ group :test do |
gem 'shoulda', '~> 2.10.3' | ||
gem 'edavis10-object_daddy', :require => 'object_daddy' | ||
gem 'mocha' | ||
platforms :mri_18, :mingw_18 do gem 'ruby-debug' end | ||
platforms :mri_19, :mingw_19 do gem 'ruby-debug19', :require => 'ruby-debug' end | ||
gem 'capybara' | ||
end | ||
group :ldap do | ||
... | ... | @@ -34,7 +32,7 @@ group :rmagick do |
# the line above this comment block and uncomment the one underneath it to | ||
# get an rmagick version known to work on older distributions. | ||
# | ||
# The following distributíons are known to *not* ship with a usable | ||
# The following distributions are known to *not* ship with a usable | ||
# ImageMagick version. There might be additional ones. | ||
# * Ubuntu 9.10 and older | ||
# * Debian Lenny 5.0 and older | ||
... | ... | @@ -102,7 +100,9 @@ if File.readable?(gemfile_local) |
end | ||
# Load plugins' Gemfiles | ||
Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file| | ||
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` | ||
instance_eval File.read(file) | ||
["plugins", "chiliproject_plugins"].each do |plugin_path| | ||
Dir.glob File.expand_path("../vendor/#{plugin_path}/*/Gemfile", __FILE__) do |file| | ||
puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` | ||
instance_eval File.read(file) | ||
end | ||
end |
config.ru
deleted
100644 → 0
Please register or sign in to comment