You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ bundle exec irb
(001): >> require 'aws-sdk-core'
=> true
(002): >> require 'event_emitter'
Traceback (most recent call last):
16: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli.rb:18:in `start'
15: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
14: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli.rb:27:in `dispatch'
13: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
12: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
11: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
10: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli.rb:424:in `exec'
9: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:28:in `run'
8: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:75:in `kernel_load'
7: from .../lib/ruby/gems/2.5.0/gems/bundler-1.16.1/lib/bundler/cli/exec.rb:75:in `load'
6: from .../bin/irb:11:in `<top (required)>'
5: from (irb):2
4: from (irb):2:in `require'
3: from .../vendor/bundle/gems/event_emitter-0.2.6/lib/event_emitter.rb:4:in `<top (required)>'
2: from .../vendor/bundle/gems/event_emitter-0.2.6/lib/event_emitter.rb:4:in `require'
1: from .../vendor/bundle/gems/event_emitter-0.2.6/lib/event_emitter/emitter.rb:2:in `<top (required)>'
TypeError (EventEmitter is not a module)
The text was updated successfully, but these errors were encountered:
@koshigoe Fix PR #1792 is under review, I'll work on including this in the next release (likely tomorrow)
Feel free to try out the patch :) Thank you for your patience!
Issue description
The
event_emitter
gem implementsEventEmitter
module.The
aws-sdk-core
gem implementsEventEmitter
class.So, I can't use
event_emitter
together withaws-sdk-core
.(
TypeError: EventEmitter is not a module
)Gem name ('aws-sdk', 'aws-sdk-resources' or service gems like 'aws-sdk-s3') and its version
Version of Ruby, OS environment
Code snippets / steps to reproduce
The text was updated successfully, but these errors were encountered: