sqltorial 0.0.2 → 0.0.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 +4 -4
- data/CHANGELOG.md +18 -0
- data/lib/sqltorial/metadata.rb +1 -1
- data/lib/sqltorial/query_cache.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d29622c64654fc0aec2d0d839d6a0c48e67c9fd
|
|
4
|
+
data.tar.gz: 028fb7bb71fdbc196e321998a4cc2b70c81d9958
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 773c24331624a956878faa2fe49ccec85e9419947ad05ea9c0975d02853aede336fe9ba70ca2291190fbe72f472ead363edd2d5b5472de89c0f63a5d3e05dfa8
|
|
7
|
+
data.tar.gz: 97a56dca3e44e5751bea7b6b61936013a78a301c8c09a1b736851a7130fe9fa8ef445d8cb0b2bfb68254f1c0be12fa941af6301090cf6cc1834b21192cc95efc
|
data/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,24 @@ All notable changes to this project will be documented in this file.
|
|
|
20
20
|
|
|
21
21
|
- Nothing.
|
|
22
22
|
|
|
23
|
+
## 0.0.3 - 2015-09-03
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Nothing.
|
|
28
|
+
|
|
29
|
+
### Deprecated
|
|
30
|
+
|
|
31
|
+
- Nothing.
|
|
32
|
+
|
|
33
|
+
### Removed
|
|
34
|
+
|
|
35
|
+
- Nothing.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- Missing require for digest.
|
|
40
|
+
|
|
23
41
|
## 0.0.2 - 2015-09-03
|
|
24
42
|
|
|
25
43
|
### Added
|
data/lib/sqltorial/metadata.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module SQLtorial
|
|
2
|
-
VERSION = "0.0.
|
|
2
|
+
VERSION = "0.0.3"
|
|
3
3
|
SUMMARY = %q{Knitr, but for SQL files, sorta}
|
|
4
4
|
DESCRIPTION = %q{Ingests a set of commented SQL statements, executes them, and dumps the comments, queries, and results into a markdown file}
|
|
5
5
|
HOMEPAGE = "http://github.com/outcomesinsights/sqltorial"
|