Method: Monus::Engine::EventMachine#load_http
- Defined in:
- lib/monus/engines/eventmachine.rb
#load_http ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/monus/engines/eventmachine.rb', line 25 def load_http @http_loaded ||= begin require 'em-http-request' true rescue LoadError raise LoadError, 'in order to use HTTP requests in EventMachine engine you should add `em-http-request` gem to your Gemfile' end end |