tdl-client-ruby 0.3.4 → 0.3.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 08f30f607cbc7669e19efc85ab98821f8186e123
4
- data.tar.gz: 0a15f5361e77e7121bdb2fa411f13a74053d4368
3
+ metadata.gz: b185111dd990f837f6f73cb871bca750724c4651
4
+ data.tar.gz: ad22648f1b2178706d7b45a9efacbdbb7c3c42e3
5
5
  SHA512:
6
- metadata.gz: 22ca7fa0cf1ebe1795ed6e0c54865d13f79b0dc8033e3cba555afb069ece797dee8c742341f60ab0cd598e6899e57199848b45dfe78d3cf4e4b7cb37c32e4427
7
- data.tar.gz: d76110bae5095283748a9f08bca56d240f7096a8ebf8dd2ece4786b93c59c8ed0f18de2f065d254992576eb677f0d183d20d0751dc381f35aba77d047cdd6263
6
+ metadata.gz: 04b5e6d91fc5fbc8e36a64be8d2cf6b69c0d752f56aa4cb65e0778fbf14789acf3f4ea58613ff09008ab368764ce32dc8c6000ed179cb4ea5be7300aa9a62c80
7
+ data.tar.gz: 98fe8293a740e7e9c9971fc331f6f952ae0b71c3538d11728e0622eaf7bfc5c01b2717b540dc85ddebf986b62c17c0aea75662e0b13d1aa6f2b3c3d412b903a4
@@ -16,7 +16,7 @@ module TDL
16
16
 
17
17
  # DEBT object is treated and a collection of anonymous methods and not a normal object this is not ideomatic ruby
18
18
 
19
- result = @user_implementation.send(request.to_h[:method]).(*request.params)
19
+ result = @user_implementation.send(request.to_h[:method], *request.params)
20
20
  rescue Exception => e
21
21
  @logger.info "The user implementation has thrown exception. #{e.message}"
22
22
  result = nil
data/lib/tdl/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module TDL
2
- PREVIOUS_VERSION = '0.1.3'
2
+ PREVIOUS_VERSION = '0.3.4'
3
3
  # the current MAJOR.MINOR version is dynamically computed from the version of the Spec
4
- CURRENT_PATCH_VERSION = '4'
4
+ CURRENT_PATCH_VERSION = '5'
5
5
  end
@@ -3,6 +3,8 @@ lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'tdl/version'
5
5
 
6
+ # DEBT: The patch version is not resetting correctly
7
+
6
8
  SPEC_FOLDER = File.expand_path('../features/spec',__FILE__).to_s
7
9
  puts "Spec folder is: #{SPEC_FOLDER}"
8
10
  MAJOR_MINOR_VERSION = `git --git-dir #{SPEC_FOLDER}/.git describe --all | cut -d '/' -f 2 | tr -d 'v'`.strip
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdl-client-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Ghionoiu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-11 00:00:00.000000000 Z
11
+ date: 2015-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: stomp