turbot-runner 0.2.9 → 0.2.10
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/README.md +1 -1
- data/lib/turbot_runner.rb +1 -1
- data/lib/turbot_runner/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2abb2d1640d836f7dc3f8430f1022ad94d22e30e
|
|
4
|
+
data.tar.gz: 4643cf89f4b41487f869c13b162031a26c5bd6f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fc70c2616f8d80fe8b3a21d1be1b1b7691e75de8af1c5f160205edef165d197528997722b000db3a3b77790fc2796acd8aa3acb9862462cd226ef52e128550c
|
|
7
|
+
data.tar.gz: a889bc90c631a1b2b796573deceba1453f6e9bf1e77126c2c49e472d9ec09131261e197a44ef60158d76cebad4baf752ca372f5eeeb7a96a84b88eece40f714f
|
data/README.md
CHANGED
data/lib/turbot_runner.rb
CHANGED
|
@@ -22,7 +22,7 @@ module TurbotRunner
|
|
|
22
22
|
def self.get_and_validate_schema_path(data_type)
|
|
23
23
|
hyphenated_name = data_type.to_s.gsub("_", "-").gsub(" ", "-")
|
|
24
24
|
path = File.join(SCHEMAS_PATH, "#{hyphenated_name}-schema.json")
|
|
25
|
-
raise TurbotRunner::InvalidDataType unless File.exists?(path)
|
|
25
|
+
raise TurbotRunner::InvalidDataType.new("Could not find #{path}") unless File.exists?(path)
|
|
26
26
|
path
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: turbot-runner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenCorporates
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -172,4 +172,3 @@ signing_key:
|
|
|
172
172
|
specification_version: 4
|
|
173
173
|
summary: Utilities for running bots with Turbot
|
|
174
174
|
test_files: []
|
|
175
|
-
has_rdoc:
|