doing 1.0.91 → 1.0.92
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/README.md +1 -1
- data/lib/doing/markdown_export.rb +16 -0
- data/lib/doing/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27a63ed53f063b29226d75b242417bfeef8b285f5dd1f225cfbf66e919e9a540
|
4
|
+
data.tar.gz: 66f53995b0b5be3461fad8b6f6bbc625fa86fbd234afb424e48b8bc559e3f297
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bd56adabdaf9ff25c4bbabe4be8ee746eff650090dc1565290ffd2d771f333fb57341bd8efcb125501a67f910f6562f48d20cc34fb2451101f7215df99ed20c
|
7
|
+
data.tar.gz: ddfdaad91df2b64a7c3c2ae7399757e3cf06ebc5686f6d9d1528fb1db75666667472c575fe7d867c7c30bbba916e12c3ed194a5ef24f568132d7ead96675231b
|
data/README.md
CHANGED
@@ -27,7 +27,7 @@ If there's something I want to look at later but doesn't need to be added to a t
|
|
27
27
|
|
28
28
|
## Installation
|
29
29
|
|
30
|
-
The current version of `doing` is <!--VER-->1.0.
|
30
|
+
The current version of `doing` is <!--VER-->1.0.91<!--END VER-->.
|
31
31
|
|
32
32
|
$ [sudo] gem install doing
|
33
33
|
|
@@ -0,0 +1,16 @@
|
|
1
|
+
##
|
2
|
+
## @brief Creates Markdown export
|
3
|
+
##
|
4
|
+
class MarkdownExport
|
5
|
+
attr_accessor :items, :page_title, :totals
|
6
|
+
|
7
|
+
def initialize(page_title, items, totals)
|
8
|
+
@page_title = page_title
|
9
|
+
@items = items
|
10
|
+
@totals = totals
|
11
|
+
end
|
12
|
+
|
13
|
+
def get_binding
|
14
|
+
binding()
|
15
|
+
end
|
16
|
+
end
|
data/lib/doing/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.92
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
@@ -166,6 +166,7 @@ files:
|
|
166
166
|
- bin/doing
|
167
167
|
- lib/doing.rb
|
168
168
|
- lib/doing/helpers.rb
|
169
|
+
- lib/doing/markdown_export.rb
|
169
170
|
- lib/doing/version.rb
|
170
171
|
- lib/doing/wwid.rb
|
171
172
|
- lib/helpers/fuzzyfilefinder
|