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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b045534895475c51b20b2c62ec4160db1d4c35a6
4
- data.tar.gz: fa1d94aabbc1534584a456debcd6fe66f2d9455e
3
+ metadata.gz: 0d29622c64654fc0aec2d0d839d6a0c48e67c9fd
4
+ data.tar.gz: 028fb7bb71fdbc196e321998a4cc2b70c81d9958
5
5
  SHA512:
6
- metadata.gz: bdcc4861bcd0467372ab815db9c9646ebfdd86a75d0a53c5b82a0903d141d74885fa7a08eee17d10f7e073d29600ff6c04097eb8cf9d6d34432828d883edd6da
7
- data.tar.gz: 7515373e6d526c05d9d868217de3f40a2bf04587f8dc90dd3abd4a6f36646a641fd7034d487487bfe2d87d7cea4f204f93589527b9ab70cb80a9ea3aaa0e5bd1
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
@@ -1,5 +1,5 @@
1
1
  module SQLtorial
2
- VERSION = "0.0.2"
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"
@@ -1,3 +1,5 @@
1
+ require 'digest'
2
+
1
3
  module SQLtorial
2
4
  class QueryCache
3
5
  attr_reader :query_to_md
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqltorial
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Duryea