tableau_notify 0.0.3 → 0.0.4
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/Gemfile.lock +1 -1
- data/README.md +12 -0
- data/lib/tableau_notify/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71f73e9931095ce258c6319ce35b511dd24fa337
|
4
|
+
data.tar.gz: 2f02f0577999b8cd7f71d4a150e8bbe60b0ca390
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cf42970f775f16ffd059f7e634236dd282725839cdbf34442bbaedefd077aa4c7173a1dcd23f459a172a40562f3cec26049e7882227bb6bbba307a2b5a02b64
|
7
|
+
data.tar.gz: dfe53102ca7954701b1aa04e6ae763a985519075544d995e01aad28ffaff20232fd451cf9170b2c22ba8503d72d9cb74a01cb0efce002f21fa84588704248eda
|
data/Gemfile.lock
CHANGED
data/README.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
=== Tableau Notifier for Mac
|
2
|
+
|
3
|
+
This simple application shows notifications in the Apple Notification Center whenever Tableau runs a query against an external data source. To use the notifier, you simply do:
|
4
|
+
|
5
|
+
```
|
6
|
+
gem install tableau_notify
|
7
|
+
tableau-notify
|
8
|
+
```
|
9
|
+
|
10
|
+
This will show the queries in the console, but will also display desktop notifications. If you click on the desktop notification, your default text editor for files with the `sql` extension will open the full query.
|
11
|
+
|
12
|
+
PRs are welcome.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tableau_notify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Evans
|
@@ -49,6 +49,7 @@ extra_rdoc_files: []
|
|
49
49
|
files:
|
50
50
|
- Gemfile
|
51
51
|
- Gemfile.lock
|
52
|
+
- README.md
|
52
53
|
- bin/tableau-notify
|
53
54
|
- lib/tableau_notify.rb
|
54
55
|
- lib/tableau_notify/version.rb
|