quandl 0.3.6 → 0.3.7
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 +8 -8
- data/UPGRADE.md +6 -0
- data/VERSION +1 -1
- data/lib/quandl/command.rb +1 -0
- data/lib/quandl/command/task/updatable.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZDJmODE5YjMxZDJlNjFiNTZiN2I0NmVhMGYzMTIwZjU2YWFjZDIyYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDEwZmVhNGQ2YWE1YmYwYzM5ODZhY2I5MDI4N2Y5YjU1MmMyOWU0Mw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDE4YjcyM2Y0MTExMDE1MTYzZmY5ZDE1YzAzMTU1NmNhNzY0YTdiMmUwZjdj
|
10
|
+
NzhiMjVjYmI4MWY5YzU5Y2U1NjE1MzRlZDU3ZDc5NmIwNDRlZTczNWQ4ODE5
|
11
|
+
ODBlMDg1MzYzM2EyYmFlMzA5NmIzN2M5ZDJiZDNjOTUyZGI1YWE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YWYzYTViMWEzZjIxMTMzYzJhOWJjMDY3NDQ3NjdlYzhkMzAxMGJmZGFiNTkw
|
14
|
+
MGRmM2Y3ODk4NzZlYjJiNDA0YmM4MzM5ODU2MTUwMTc0MWZiMTI0MDBiNjEw
|
15
|
+
ZWZjNWNhN2UxN2ZiYzhmZWYwYjQxYTI5YzEzYjFkNTdjYTNmMTg=
|
data/UPGRADE.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.7
|
data/lib/quandl/command.rb
CHANGED
@@ -38,6 +38,7 @@ module Quandl::Command
|
|
38
38
|
global_option '--stdout STRING', 'where to redirect stdout'
|
39
39
|
global_option '--stderr STRING', 'where to redirect stderr'
|
40
40
|
global_option '--force-yes', 'force y/n with yes'
|
41
|
+
global_option '--production', 'skip extra output'
|
41
42
|
|
42
43
|
Tasks.each{|t| t.configure(self) }
|
43
44
|
|