geewiz 0.1.3 → 0.2.0
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/README.md +3 -1
- data/lib/geewiz/client.rb +1 -1
- data/lib/geewiz/version.rb +1 -1
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38b1fa4a300fe01b6173425d70a6999ba149641ee0d759fa161a9a09ef4890f6
|
4
|
+
data.tar.gz: 0d3b6bc44c7594c055896a3dae249cb862176bf8dc1cae9dbad2e034ed382d8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88f6456e7880d4b401a659607dd10a1135391864ae8cf2699a90edf157f00561665c156f0a6aa728a52930fbbe61965715fbbdd8503d5462193488ae24f8f02a
|
7
|
+
data.tar.gz: 730ec8e53cb2ef0e6663d94c607f3c1961c3fddd79818bc538c04b0d07e9eb809415dd4d2e7215624c29c1a46c6d95e2c8c1037db7fa9e3efaeb60220f3ec035
|
data/README.md
CHANGED
@@ -73,7 +73,7 @@ require 'geewiz'
|
|
73
73
|
result = Geewiz.card :my_card_id
|
74
74
|
result = Geewiz.card "another-card-id" # all data going to Geewiz is json encoded, so either symbols or strings are fine
|
75
75
|
|
76
|
-
# show a card with the id "my_card_id" override `type` and `
|
76
|
+
# show a card with the id "my_card_id" override the `type` and `items` parameters
|
77
77
|
result = Geewiz.card :my_card_id, type: "selectOne", items: ["one", "two", "three"]
|
78
78
|
|
79
79
|
# show a card with no id
|
@@ -114,6 +114,8 @@ Geewiz.set title: "my app"
|
|
114
114
|
|
115
115
|
```ruby
|
116
116
|
config_value = Geewiz.get_user_config :my_key
|
117
|
+
# or
|
118
|
+
config_value = Geewiz.get_user_config 'my_key'
|
117
119
|
```
|
118
120
|
|
119
121
|
### Using the global client (simplest way to use the gem)
|
data/lib/geewiz/client.rb
CHANGED
data/lib/geewiz/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geewiz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Nicholaides
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-25 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: Geewiz SDK for Ruby
|
14
13
|
email:
|
@@ -23,13 +22,11 @@ files:
|
|
23
22
|
- lib/geewiz/var_cache.rb
|
24
23
|
- lib/geewiz/version.rb
|
25
24
|
- sig/geewiz.rbs
|
26
|
-
homepage:
|
27
25
|
licenses:
|
28
26
|
- MIT
|
29
27
|
metadata:
|
30
28
|
allowed_push_host: https://rubygems.org
|
31
29
|
rubygems_mfa_required: 'true'
|
32
|
-
post_install_message:
|
33
30
|
rdoc_options: []
|
34
31
|
require_paths:
|
35
32
|
- lib
|
@@ -44,8 +41,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
44
41
|
- !ruby/object:Gem::Version
|
45
42
|
version: '0'
|
46
43
|
requirements: []
|
47
|
-
rubygems_version: 3.
|
48
|
-
signing_key:
|
44
|
+
rubygems_version: 3.6.2
|
49
45
|
specification_version: 4
|
50
46
|
summary: Geewiz SDK for Ruby
|
51
47
|
test_files: []
|