command_processor 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6020b49c20ea9206c160f962b47f9aa0a8a65537
4
- data.tar.gz: dbcdc8bd5722330060aa984a580184f593f42dc8
3
+ metadata.gz: acc752e7a2996b668ce295c18b126135204b14f3
4
+ data.tar.gz: 4cfaab1c0e10ab11dabb02405635641e868b799a
5
5
  SHA512:
6
- metadata.gz: d6d3302fc78a368fecfcd7dc4c1ed92c1b424d4f070a73900ff1504e7718e675ddcb6cab29976ddfb5fa3738cc6789390f8e2e308b4cca1152b11303fffef863
7
- data.tar.gz: bdb61eae9b272efb34f502a3400b22e7985d17d329109b57215fda98ac2153ceef5094b33ca06c42e392517f0cda5b661b5ad93cc11e4fd76e5b9b48910cb6e1
6
+ metadata.gz: f3078ed63aaa1355db3213aaa8b8b295b39abf38a6b17a9c9908473386d705319d9edf6cfa378dca9f5e65c25de2aaa926f902c7e8b3ff04031d048e08210ef6
7
+ data.tar.gz: 9eb3dc398fc0d537bf9f929faff5ff49c44ad708bbad279d1a8c61acb4dfef1128fcbb4c8abec1a275e9fe3e1af0c4903dfeb1f535508bcd5018eb27461c97a7
@@ -15,8 +15,6 @@ module CommandProcessor
15
15
  handler_class = Object.const_get("#{command.class.name}Handler")
16
16
  handler = @container.resolve_by_type(handler_class)
17
17
  handler.execute(command)
18
- rescue ::IOC::UnknownServiceError
19
- raise(HandlerNotRegisteredError, "Expected handler of type '#{command.class.name}Handler' to be registered")
20
18
  end
21
19
  end
22
20
  end
@@ -1,3 +1,3 @@
1
1
  module CommandProcessor
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -1,5 +1,4 @@
1
1
  require "command_processor/version"
2
2
 
3
3
  module CommandProcessor
4
- # Your code goes here...
5
- end
4
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: command_processor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Lott
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-07-30 00:00:00.000000000 Z
11
+ date: 2015-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ioc