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 +4 -4
- data/lib/tdl/respond/obtain_response.rb +1 -1
- data/lib/tdl/version.rb +2 -2
- data/tdl-client-ruby.gemspec +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b185111dd990f837f6f73cb871bca750724c4651
|
|
4
|
+
data.tar.gz: ad22648f1b2178706d7b45a9efacbdbb7c3c42e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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]
|
|
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
data/tdl-client-ruby.gemspec
CHANGED
|
@@ -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
|
+
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
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: stomp
|