turbot-runner 0.2.2 → 0.2.3

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NTQ3ZDQzMjMyYzQyMTg2OWMzZDk0NWVjZjgwYWFiNjU0MmRmYzdmZg==
4
+ MGQ1N2ZlZWE5M2M4ZjA2MzYxYmJlYzcyZWExZTQyNmUyZDBiZDZlOQ==
5
5
  data.tar.gz: !binary |-
6
- NmEzOGE5NjViYzc5ZGZhNjZmZjg1MjNmNGNkNTI4ZWVmMDIzNjI1YQ==
6
+ ODgzZWNlMTY5ZmRjNTQxMDgxNzRhYWMxMmZlZjE2YzQ5MzJlMWRjOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NmY3ZmMwM2Y2ZDljNWVkODM1MWM3YjcxNjM1M2I3MjAyM2Q4YzYxM2ExNWE0
10
- MGM5YmM0MDM2MGYwMTQ1Nzk2NDhmNzNiYzZmYTJmNDNjYmY3NmNhMjA0ZTJj
11
- NWJhYTJlZGQ4MzhiMWQ5MjMxYTk1MjQ4ZmU5Y2U1YzE2MjYwZGU=
9
+ NzE0ZDUwYTQwMWNhMzkzMDJmZDNmM2UzN2VjZjU1OGI5ODkxMzY3OTNkNzQ5
10
+ MDcwZjUzY2QyMmYyODNmMWJmNGY2ZDJjNDVhYWUyYThkZjcxNzY2NmNkYjc5
11
+ YzYwNjkxNDIwMmJlNWVkNmM5OGRmYjAwNmU1MTg1NGFhYzRjNmY=
12
12
  data.tar.gz: !binary |-
13
- NjQ5NDRmN2EyNGM0NzEyZWNjYTQyYWQ5MjA4YTc4YWQ1ODMyYzc0MmUzNmJm
14
- OTFkNjczN2E2NGQyNTllMDE1ZGQxMTNhMmY5MmYzMDE0MGY0NDI3YjdlNmVi
15
- YjA3ZjE3Mzc4ZmYwMDVlZTQ0ZWI2ZTE1NTZhMmRiZDAwNzYwYWQ=
13
+ ZDJkYzViYTA4ZTg2MzlhZmQwMmQ5ZWQ1ZDQ5NWU1NWQyOGYzMjkxOTFiOTE3
14
+ NTZlMTAwMGRiZTYzMTkxNzUwNzU0OTcyNjRmOTRkNmY2N2QxM2RjMmNkNWZj
15
+ MjcxYzM5M2IxZDZiZDcyZGJlN2VmNGIyYjk3ZDg0ZGI3YWJjYzY=
@@ -1,3 +1,3 @@
1
1
  module TurbotRunner
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.3'
3
3
  end
@@ -28,6 +28,10 @@
28
28
  "description": "The code for filing type, if given (e.g. 'AR01')",
29
29
  "type": "string"
30
30
  },
31
+ "corporate_register_filing": {
32
+ "description": "Whether the source of the filing is the corporate register where the company is incorporated/registered with",
33
+ "type": "boolean"
34
+ },
31
35
  "title": {
32
36
  "description": "The title of the filing, if given",
33
37
  "type": "string"
@@ -10,7 +10,7 @@
10
10
  "file_format": {
11
11
  "description": "Format of the document, if known",
12
12
  "type": "string",
13
- "enum": ["xml","pdf","html", null]
13
+ "enum": ["xml","pdf","html","doc", null]
14
14
  },
15
15
  "original_source_url": {
16
16
  "description": "Persistent URL for the document, if there is one",
@@ -35,6 +35,10 @@
35
35
  "description": "type of document (at the moment only XBRL is the only option here)",
36
36
  "type": "string",
37
37
  "enum": ["xbrl", null]
38
+ },
39
+ "pages": {
40
+ "description": "Number of pages, if known",
41
+ "type": "integer"
38
42
  }
39
43
  },
40
44
  "additionalProperties": false,
@@ -5,7 +5,10 @@
5
5
  "properties": {
6
6
  "name": {
7
7
  "type": "string",
8
- "minLength": 1
8
+ "minLength": 1,
9
+ "not": {
10
+ "pattern": "^[\\.\\,\\*\\\\\\-\\s\\{\\}\\(\\)]+$"
11
+ }
9
12
  },
10
13
  "start_date": {
11
14
  "anyOf": [
@@ -58,6 +58,11 @@
58
58
  "type": "string",
59
59
  "format": "date"
60
60
  },
61
+ "retrieved_at": {
62
+ "description": "Date-time this was retrieved from the source",
63
+ "type": "string",
64
+ "format": "date-time"
65
+ },
61
66
  "licence_url": {
62
67
  "type": "string",
63
68
  "description": "A public URL for the licence"
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.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenCorporates
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-17 00:00:00.000000000 Z
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport