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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 365e58ed7377d560d531ce2a1585d115c0a1b73fc3039621a2fef230f52de5dc
4
- data.tar.gz: 0efbf78887502113048946df9942e58ad751921b4fc997efd7556ba40e428bb5
3
+ metadata.gz: 27a63ed53f063b29226d75b242417bfeef8b285f5dd1f225cfbf66e919e9a540
4
+ data.tar.gz: 66f53995b0b5be3461fad8b6f6bbc625fa86fbd234afb424e48b8bc559e3f297
5
5
  SHA512:
6
- metadata.gz: 53fba5968f465d3dc40821360d60f2ff63573b8e5b47e9eb851fbf6592a3a7baea0436efb118d08d4f92e10f035a5f9ee5fa47ae5df65aa6929c40146a0a6f5f
7
- data.tar.gz: 6a98c715220355434ed2e05e4582d04ddd7eade5f4588ea4e881a025654ac5e0d90df1f845f73406a50bda14d887540f34254ffe8de50252840a2c070cbb5c75
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.90<!--END VER-->.
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
@@ -1,3 +1,3 @@
1
1
  module Doing
2
- VERSION = '1.0.91'
2
+ VERSION = '1.0.92'
3
3
  end
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.91
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