ws2812 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7a2138c68a351d27224a3858e46fdba32ed1d880
4
- data.tar.gz: 782eaa7080c172cb1070b8f082e63b61ab0a0f41
2
+ SHA256:
3
+ metadata.gz: 5a2d023ff66562da7ad58e1bc7e91f9d7f5c9e1e6cb668f26484f8c1af3bccb6
4
+ data.tar.gz: af5fd11d00d4c5b3f770ddbf559e392804803a8d13c29b68e978ed7eb69b0868
5
5
  SHA512:
6
- metadata.gz: f6b90b4d822e6c904ddd44a1505d06647cd3c65ffa90d2fdfc5aa335671efbe4b5e0207b72367841da454ebbba7fdc56eddf82d61dfa20a616ab4c89293fe396
7
- data.tar.gz: 49c2fa315148cf9c1c933ef1c459fd6abc7a030f91e272a7e722a337ddba5a0df31fbbea6576f5cd451dee67693dc66c8049dae22f311e1bf6c55367f543c07b
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'
@@ -34,6 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
34
  #include <stdint.h>
35
35
  #include <errno.h>
36
36
  #include <sys/mman.h>
37
+ #include <sys/sysmacros.h>
37
38
  #include <sys/ioctl.h>
38
39
  #include <sys/types.h>
39
40
  #include <sys/stat.h>
@@ -1,5 +1,5 @@
1
1
  module Ws2812
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
4
4
 
5
5
  # to make it all less confusing
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.6
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.2.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