twb 4.5.4 → 4.5.5
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7049c47a51982f0de1d215e3d2091e559b56346f1e9f1c74b7cbe2464dfcf0c9
|
|
4
|
+
data.tar.gz: d7f01f024dea265c8405dc141be50171ac5883d952f38f6128980f949c45cd72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b56aa09e7dcf6e2d3cfc2e063929066584c5c213dca405d73ccd11862831ce4a69e37e302b8cd41811254bd060e871a4b423b35d0904d84c5cf95a2e87ceaef
|
|
7
|
+
data.tar.gz: abfd00faf2f0727ff5839f7662be0a3499fbcd6a315d1670701071720e305eeb68feb9fd4aff9699a9cce7c6410012f43849f94b46cf114bc7f0f0e81828e78d
|
data/lib/twb.rb
CHANGED
|
@@ -52,7 +52,6 @@ require_relative 'twb/util/docprep'
|
|
|
52
52
|
require_relative 'twb/analysis/documentedfieldsmarkdownemitter'
|
|
53
53
|
require_relative 'twb/analysis/annotatedfieldscsvemitter'
|
|
54
54
|
require_relative 'twb/analysis/workbooksummaryanalyzer'
|
|
55
|
-
# require_relative 'twb/analysis/calculatedfields/calculatedfieldsanalyzer'
|
|
56
55
|
require_relative 'twb/analysis/calculatedfields/groupfieldsanalyzer'
|
|
57
56
|
require_relative 'twb/analysis/calculatedfields/markdownemitter'
|
|
58
57
|
require_relative 'twb/analysis/calculatedfields/csvemitter'
|
|
@@ -67,9 +66,11 @@ require_relative 'twb/analysis/sheets/sheetfiltersanalyzer'
|
|
|
67
66
|
require_relative 'twb/analysis/sheets/sheetfieldsanalyzer'
|
|
68
67
|
require_relative 'twb/analysis/sheets/dashsheetsanalyzer'
|
|
69
68
|
|
|
69
|
+
# require_relative 'twb/analysis/calculatedfields/calculatedfieldsanalyzer'
|
|
70
|
+
|
|
70
71
|
|
|
71
72
|
# Represents Tableau Workbooks, their contents, and classes that analyze and manipulate them.
|
|
72
73
|
#
|
|
73
74
|
module Twb
|
|
74
|
-
VERSION = '4.5.
|
|
75
|
+
VERSION = '4.5.5'
|
|
75
76
|
end
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# You should have received a copy of the GNU General Public License
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
|
-
require 'nokogiri'
|
|
17
|
-
require 'twb'
|
|
18
|
-
require 'set'
|
|
16
|
+
# require 'nokogiri'
|
|
17
|
+
# require 'twb'
|
|
18
|
+
# require 'set'
|
|
19
19
|
require 'csv'
|
|
20
20
|
|
|
21
21
|
module Twb
|
|
@@ -32,7 +32,7 @@ module Analysis
|
|
|
32
32
|
docFileName = docFile('GroupFields.csv')
|
|
33
33
|
@csv = CSV.open(docFileName,'w')
|
|
34
34
|
@csv << ['Workbook','Data Source','Field','Group','Member']
|
|
35
|
-
addDocFile docFileName, "Workbooks, Data Sources, and their Grouped Fields"
|
|
35
|
+
addDocFile @csv, docFileName, "Workbooks, Data Sources, and their Grouped Fields"
|
|
36
36
|
#--
|
|
37
37
|
@twbCount = 0
|
|
38
38
|
@dsCount = 0
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: twb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.5.
|
|
4
|
+
version: 4.5.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Gerrard
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: creek
|