quandl_client 2.6.1 → 2.6.2

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: 8f3c7b2e6d00eae927b27582c0639e2335f8baaf
4
- data.tar.gz: 92fab0d74f709dffc8ee74694ba2508caf0e1122
3
+ metadata.gz: 454f69cbe4f61aaa0df1982140c16d450b469270
4
+ data.tar.gz: f7c57a5ee81fd54fb4076d4782028985499100a4
5
5
  SHA512:
6
- metadata.gz: a4e52c2c6c007ae90725f3dd46bec811e599e446fdfcbdc8598997cf5901c3d5fd8b7161aef6985dab70090a5aa9a5721542c18a7bbdc2f219f29511ea5977bf
7
- data.tar.gz: 06d31ce69a4f5d0ce1d24de67bd6269a53acc71bcecd969770e9cf2dbcd89653c0f22043af0088d22ce6b215654e33112ab8417d1cfbbfff2406fc7c95c7765c
6
+ metadata.gz: b53f0cd1b254d0e97152059408c159a5651ee0f79ff28c2bae01f85cee93ffc3aff1e0db9f4fcbf382657d9fc1c3705b2b43a2727f20b78e5af350ebddb80e90
7
+ data.tar.gz: e1d557e659627e0ef55ac3640631f440623f75871ff50c1a287f1ebe93bf763fbd1d2f083f63cf79f4e54d7378f3f797215ea6119ff1ca28161c09d778fa8d9c
data/UPGRADE.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 2.6.2
2
+
3
+ * QUGC-55 Add Report for filing reports
4
+
5
+
6
+
1
7
  ## 2.6.1
2
8
 
3
9
  * QUGC-113 fix Dataset#data errors dont propagate to parent object
@@ -12,33 +18,33 @@
12
18
 
13
19
 
14
20
 
15
- # 2.5.2
21
+ ## 2.5.2
16
22
 
17
23
  * WIKI-153 Add scrapers
18
24
 
19
25
 
20
- # 2.5.1
26
+ ## 2.5.1
21
27
 
22
28
  * QUGC-57 move data validation from Quandl::Format into Quandl::Client. Data validations only run on #valid?
23
29
  * QUGC-53 numeric codes require the full code
24
30
 
25
31
 
26
- # 2.5.0
32
+ ## 2.5.0
27
33
 
28
34
  * remove yajl
29
35
 
30
36
 
31
- # 2.4.9
37
+ ## 2.4.9
32
38
 
33
39
  * observe ruby platform
34
40
 
35
41
 
36
- # 2.4.7
42
+ ## 2.4.7
37
43
 
38
44
  * add middleware to track the origin of requests across quandl packages
39
45
 
40
46
 
41
- # 2.4.6
47
+ ## 2.4.6
42
48
 
43
49
  * QUGC-43 improved message on wrong number of colums
44
50
  * QUGC-41 enforce code formatting. always upcase codes
@@ -46,34 +52,34 @@
46
52
  * revise code pattern
47
53
 
48
54
 
49
- # 2.4.5
55
+ ## 2.4.5
50
56
 
51
57
  * QUGC-40 add validation to enforce: You may not change number of columns in a dataset
52
58
  * QUGC-37 Dataest.find accept backslash or forward slash interchangeably
53
59
 
54
60
 
55
- # 2.4.4
61
+ ## 2.4.4
56
62
 
57
63
  * Dataset#data to_table assigns column_names to headers
58
64
  * add skip_browse to Sheet
59
65
 
60
66
 
61
- # 2.4.3
67
+ ## 2.4.3
62
68
 
63
69
  * hotfix for full_code pattern matching ... code can be as short as two characters
64
70
 
65
71
 
66
- # 2.4.2
72
+ ## 2.4.2
67
73
 
68
74
  * Dataset.find will return nil unless the id is an integer, or matches the quandl pattern for full_code
69
75
 
70
76
 
71
- # 2.4.1
77
+ ## 2.4.1
72
78
 
73
79
  * revise reference_url http prepend
74
80
 
75
81
 
76
- # 2.4.0
82
+ ## 2.4.0
77
83
 
78
84
  * Dataset#reference_url should prepend of http:// when missing
79
85
  * add Quandl::Pattern for defining regex patterns with embedded examples
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.6.1
1
+ 2.6.2
@@ -0,0 +1,15 @@
1
+ module Quandl
2
+ module Client
3
+
4
+ class Report < Quandl::Client::Base
5
+
6
+ ###############
7
+ # VALIDATIONS #
8
+ ###############
9
+
10
+ validates :message, presence: true
11
+
12
+ end
13
+
14
+ end
15
+ end
data/lib/quandl/client.rb CHANGED
@@ -17,6 +17,7 @@ require 'quandl/client/models/source'
17
17
  require 'quandl/client/models/user'
18
18
  require 'quandl/client/models/location'
19
19
  require 'quandl/client/models/scraper'
20
+ require 'quandl/client/models/report'
20
21
 
21
22
  module Quandl
22
23
  module Client
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quandl_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.1
4
+ version: 2.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Hilscher
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-10 00:00:00.000000000 Z
11
+ date: 2014-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: quandl_data
@@ -226,6 +226,7 @@ files:
226
226
  - lib/quandl/client/models/dataset.rb
227
227
  - lib/quandl/client/models/dataset/data.rb
228
228
  - lib/quandl/client/models/location.rb
229
+ - lib/quandl/client/models/report.rb
229
230
  - lib/quandl/client/models/scraper.rb
230
231
  - lib/quandl/client/models/sheet.rb
231
232
  - lib/quandl/client/models/source.rb