-
- Downloads
Explictly require hangouts-chat in Gemfile
After the model `HangoutsChatService` was renamed `Integrations::HangoutsChat`, the `require "hangouts_chat"` in `config/initializers/hangouts_chat_http_override.rb` would load the model and not the gem. This would cause the initializer to define a new `HangoutsChat::Sender::HTTP` class rather than redefine an existing class. !61957 #201855
Showing
- Gemfile 1 addition, 1 deletionGemfile
- app/models/integrations/chat_notification.rb 0 additions, 1 deletionapp/models/integrations/chat_notification.rb
- app/models/integrations/hangouts_chat.rb 0 additions, 2 deletionsapp/models/integrations/hangouts_chat.rb
- spec/support/shared_examples/models/chat_integration_shared_examples.rb 0 additions, 1 deletion...hared_examples/models/chat_integration_shared_examples.rb
... | ... | @@ -253,7 +253,7 @@ gem 'flowdock', '~> 0.7' |
gem 'slack-messenger', '~> 2.3.4' | ||
# Hangouts Chat integration | ||
gem 'hangouts-chat', '~> 0.0.5' | ||
gem 'hangouts-chat', '~> 0.0.5', require: 'hangouts_chat' | ||
# Asana integration | ||
gem 'asana', '~> 0.10.3' | ||
... | ... |
Please register or sign in to comment