forwardmachine 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,10 @@ module ForwardMachine
13
13
 
14
14
  def run
15
15
  EM.run {
16
+ EM.error_handler { |error|
17
+ logger.error(error.message)
18
+ logger.error(error.backtrace.join("\n"))
19
+ }
16
20
  EM.start_server(@host, @port, ControllerConnection,
17
21
  @forwarder_host, @ports)
18
22
  logger.info("Started controller at #{@host}:#{@port}")
@@ -1,3 +1,3 @@
1
1
  module ForwardMachine
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forwardmachine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-03 00:00:00.000000000 Z
12
+ date: 2012-12-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine
@@ -118,3 +118,4 @@ test_files:
118
118
  - spec/forwardmachine/ports_pool_spec.rb
119
119
  - spec/integration_spec.rb
120
120
  - spec/spec_helper.rb
121
+ has_rdoc: