twb 0.0.37 → 0.0.38
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.
- data/{README.txt → README.md} +4 -4
- data/lib/twb.rb +1 -1
- data/lib/twb/storyboard.rb +1 -1
- data/lib/twb/util/htmllistcollapsible.rb +1 -1
- data/twb-0.0.37.gem +0 -0
- data/twb.gemspec +2 -2
- metadata +5 -4
data/{README.txt → README.md}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
# TWB - The Tableau Workbook gem.
|
1
|
+
# TWB - The Tableau Workbook Ruby gem.
|
2
2
|
|
3
|
-
This gem models Tableau workbooks and their major components. It's the
|
3
|
+
This gem models Tableau workbooks and their major components. It's the result to years of writing similar code to access, interpret,
|
4
4
|
and manage Tableau workbooks that involved writing the same code for loading and navigating workbooks again and again.
|
5
5
|
|
6
6
|
## Philosophy
|
@@ -10,8 +10,8 @@ Tableau Workbook governance should be:
|
|
10
10
|
- free, as in beer and speech, and
|
11
11
|
- constantly evolving to incorporate new and interesting things people can think of to see about do with their Workbooks.
|
12
12
|
|
13
|
-
The TWB gem is
|
14
|
-
and offer improvements and extensions to it.
|
13
|
+
The TWB gem is released to the Tableau community in the hope that it will prove to be useful and valuable,
|
14
|
+
that people will build useful things with it, and that they will offer improvements and extensions to it.
|
15
15
|
|
16
16
|
## History and rationale
|
17
17
|
|
data/lib/twb.rb
CHANGED
data/lib/twb/storyboard.rb
CHANGED
@@ -25,7 +25,7 @@ module Twb
|
|
25
25
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
26
26
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
27
27
|
<head>
|
28
|
-
<title>
|
28
|
+
<title>TWB Documentation</title>
|
29
29
|
|
30
30
|
<style type="text/css">
|
31
31
|
body, a {
|
data/twb-0.0.37.gem
ADDED
Binary file
|
data/twb.gemspec
CHANGED
@@ -3,8 +3,8 @@ require 'twb'
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'twb'
|
6
|
-
s.summary = "Classes for accessing Tableau Workbooks and their contents
|
7
|
-
s.description = "
|
6
|
+
s.summary = "Classes for accessing Tableau Workbooks and their contents."
|
7
|
+
s.description = "A sollection of Ruby classes designed for accessing and recording information about, and for manipulating, Tableau Workbooks and their contents."
|
8
8
|
s.version = Twb::VERSION
|
9
9
|
s.date = "2015-03-14"
|
10
10
|
s.author = "Chris Gerrard"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.38
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,8 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2015-03-14 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description:
|
14
|
+
description: A sollection of Ruby classes designed for accessing and recording information
|
15
|
+
about, and for manipulating, Tableau Workbooks and their contents.
|
15
16
|
email: Chris@Gerrard.net
|
16
17
|
executables: []
|
17
18
|
extensions: []
|
@@ -42,7 +43,7 @@ files:
|
|
42
43
|
- lib/twb/worksheet.rb
|
43
44
|
- lib/twb.rb
|
44
45
|
- LICENSE.txt
|
45
|
-
- README.
|
46
|
+
- README.md
|
46
47
|
- test/Calculated Fields Test Workbook.twb
|
47
48
|
- test/No Content.twb
|
48
49
|
- test/No Dashboards.twb
|
@@ -86,5 +87,5 @@ rubyforge_project:
|
|
86
87
|
rubygems_version: 1.8.16
|
87
88
|
signing_key:
|
88
89
|
specification_version: 3
|
89
|
-
summary: Classes for accessing Tableau Workbooks and their contents
|
90
|
+
summary: Classes for accessing Tableau Workbooks and their contents.
|
90
91
|
test_files: []
|