ws2812 0.0.6 → 0.0.7
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 +5 -5
- data/README.md +2 -1
- data/Rakefile +1 -1
- data/ext/ws2812/mailbox.c +1 -0
- data/lib/ws2812.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 5a2d023ff66562da7ad58e1bc7e91f9d7f5c9e1e6cb668f26484f8c1af3bccb6
|
|
4
|
+
data.tar.gz: af5fd11d00d4c5b3f770ddbf559e392804803a8d13c29b68e978ed7eb69b0868
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20231b982a7ffc146167860aa96ab0784e0947906c0b127eb4e26b9a7e85455d00efaa0113c4c72591b243224ac715f099a5b3db7b6003101b73f7c425e850d1
|
|
7
|
+
data.tar.gz: 4477bb4be547d00ff6cf413d65779e661be5456fb149614ddb99b6bd7637691b1fc5918510c9a7cb003b5c36e9bbe4733e6be124685910cd3773d335d5391a18
|
data/README.md
CHANGED
|
@@ -39,7 +39,8 @@ GNU General Public License v. 2, see [LICENSE.txt](LICENSE.txt).
|
|
|
39
39
|
# Authors
|
|
40
40
|
This gem (all of the ruby code and some tweaks to the C extension) was
|
|
41
41
|
originally created by Michal Jirků <box@wejn.org>, later extended by
|
|
42
|
-
Philip Howard <phil@gadgetoid.com> to support newer Pi-s
|
|
42
|
+
Philip Howard <phil@gadgetoid.com> to support newer Pi-s, and by
|
|
43
|
+
Derek Stotz <derek@springboardretail.com> to support Buster.
|
|
43
44
|
|
|
44
45
|
And it wouldn't be possible without the original UnicornHAT repo.
|
|
45
46
|
|
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ spec = Gem::Specification.new do |s|
|
|
|
12
12
|
s.date = '2015-05-03'
|
|
13
13
|
s.summary = 'Ruby wrapper around WS2812 LED driver for Raspberry Pi'
|
|
14
14
|
s.description = 'Gem that encapsulates modified RPi ws281x library from UnicornHat to help drive your WS2812 led chain (or matrix) from RaspberryPi'
|
|
15
|
-
s.authors = ['Michal Jirků', 'Pimoroni', 'Richard Hirst', 'Jeremy Garff', 'Philip Howard', 'Daniel Hollands']
|
|
15
|
+
s.authors = ['Michal Jirků', 'Pimoroni', 'Richard Hirst', 'Jeremy Garff', 'Philip Howard', 'Daniel Hollands', 'Derek Stotz']
|
|
16
16
|
s.email = 'box@wejn.org'
|
|
17
17
|
s.files = `git ls-files -z`.split("\x0")
|
|
18
18
|
s.homepage = 'https://github.com/wejn/ws2812'
|
data/ext/ws2812/mailbox.c
CHANGED
data/lib/ws2812.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ws2812
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Jirků
|
|
@@ -10,6 +10,7 @@ authors:
|
|
|
10
10
|
- Jeremy Garff
|
|
11
11
|
- Philip Howard
|
|
12
12
|
- Daniel Hollands
|
|
13
|
+
- Derek Stotz
|
|
13
14
|
autorequire:
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
@@ -104,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
105
|
version: '0'
|
|
105
106
|
requirements: []
|
|
106
107
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
108
|
+
rubygems_version: 2.7.6
|
|
108
109
|
signing_key:
|
|
109
110
|
specification_version: 4
|
|
110
111
|
summary: Ruby wrapper around WS2812 LED driver for Raspberry Pi
|