switchbot 0.4.0 → 0.5.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/CHANGELOG.md +7 -1
- data/lib/switchbot.rb +1 -0
- data/lib/switchbot/bot.rb +9 -0
- data/lib/switchbot/client.rb +4 -0
- data/lib/switchbot/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55a05071d2d0711654bb0f7a3a79b971d97e2a66933eb8a34df2b87bf22ca56d
|
|
4
|
+
data.tar.gz: e77ab215552b6e54166a2694807e0025f422141ec5b6e7c82b3417b3e8c90e0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 393417b2f5117397750f6622f142902fce55c5ded9a792b7dd1b6fafc67246ba1ddf61c9b97c687d7ce51f22deb67d1a75804826aab3b6a00e1d5259645f8c74
|
|
7
|
+
data.tar.gz: d69f3d6f8fac1a30845892d1dd1c3745ff33cfb02ac9fe36070731c20f1e5b353966daeb33fba108268cf4c9c2e579cbffc7fb4dc8172ad52ee32be63a5841c6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](http://github.com/ytkg/switchbot/compare/v0.
|
|
2
|
+
[full changelog](http://github.com/ytkg/switchbot/compare/v0.5.0...main)
|
|
3
|
+
|
|
4
|
+
## v0.5.0
|
|
5
|
+
[full changelog](http://github.com/ytkg/switchbot/compare/v0.4.0...v0.5.0)
|
|
6
|
+
|
|
7
|
+
* Add Bot
|
|
8
|
+
* https://github.com/ytkg/switchbot/pull/9
|
|
3
9
|
|
|
4
10
|
## v0.4.0
|
|
5
11
|
[full changelog](http://github.com/ytkg/switchbot/compare/v0.3.0...v0.4.0)
|
data/lib/switchbot.rb
CHANGED
|
@@ -8,6 +8,7 @@ require_relative 'switchbot/version'
|
|
|
8
8
|
require_relative 'switchbot/client'
|
|
9
9
|
require_relative 'switchbot/device'
|
|
10
10
|
require_relative 'switchbot/scene'
|
|
11
|
+
require_relative 'switchbot/bot'
|
|
11
12
|
require_relative 'switchbot/light'
|
|
12
13
|
require_relative 'switchbot/humidifier'
|
|
13
14
|
|
data/lib/switchbot/client.rb
CHANGED
data/lib/switchbot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: switchbot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoshiki Takagi
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -142,6 +142,7 @@ files:
|
|
|
142
142
|
- bin/console
|
|
143
143
|
- bin/setup
|
|
144
144
|
- lib/switchbot.rb
|
|
145
|
+
- lib/switchbot/bot.rb
|
|
145
146
|
- lib/switchbot/client.rb
|
|
146
147
|
- lib/switchbot/device.rb
|
|
147
148
|
- lib/switchbot/humidifier.rb
|
|
@@ -156,7 +157,7 @@ metadata:
|
|
|
156
157
|
homepage_uri: https://github.com/ytkg/switchbot
|
|
157
158
|
source_code_uri: https://github.com/ytkg/switchbot
|
|
158
159
|
changelog_uri: https://github.com/ytkg/switchbot/blob/main/CHANGELOG.md
|
|
159
|
-
post_install_message:
|
|
160
|
+
post_install_message:
|
|
160
161
|
rdoc_options: []
|
|
161
162
|
require_paths:
|
|
162
163
|
- lib
|
|
@@ -171,8 +172,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
172
|
- !ruby/object:Gem::Version
|
|
172
173
|
version: '0'
|
|
173
174
|
requirements: []
|
|
174
|
-
rubygems_version: 3.
|
|
175
|
-
signing_key:
|
|
175
|
+
rubygems_version: 3.1.6
|
|
176
|
+
signing_key:
|
|
176
177
|
specification_version: 4
|
|
177
178
|
summary: SwitchBot API client for Ruby
|
|
178
179
|
test_files: []
|