twb 0.0.37 → 0.0.38

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 response to years of writing similar code to access, interpret,
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 offered in the hope that it will prove to be useful and valuable, and that people will build useful things with it
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
@@ -29,6 +29,6 @@ require_relative 'twb/worksheet'
29
29
  # Represents Tableau Workbooks and their contents.
30
30
  #
31
31
  module Twb
32
- VERSION = '0.0.37'
32
+ VERSION = '0.0.38'
33
33
  end
34
34
 
@@ -22,7 +22,7 @@ module Twb
22
22
 
23
23
  @@hasher = Digest::SHA256.new
24
24
 
25
- attr_reader :node, :name, :worksheets
25
+ attr_reader :node, :name, :sheets
26
26
 
27
27
  def initialize node
28
28
  # puts "initialize Storyboard"
@@ -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>Tableau Documentation</title>
28
+ <title>TWB Documentation</title>
29
29
 
30
30
  <style type="text/css">
31
31
  body, a {
Binary file
@@ -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 - summary."
7
- s.description = "Classes for accessing Tableau Workbooks and their contents - 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.37
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: Classes for accessing Tableau Workbooks and their contents - 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.txt
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 - summary.
90
+ summary: Classes for accessing Tableau Workbooks and their contents.
90
91
  test_files: []