forked from WiringPi/WiringPi-Ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wiringpi.gemspec
14 lines (14 loc) · 992 Bytes
/
wiringpi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Gem::Specification.new do |s|
s.name = 'wiringpi'
s.version = '2.32.0'
s.license = 'GNU Lesser General Public License v3'
s.date = '2013-04-07'
s.platform= Gem::Platform::RUBY
s.summary = "Arduino wiring-like library for Raspberry Pi GPIO. Will only work on a Pi. Alpha version."
s.authors = ["Gordon","Phil"]
s.email = 'phil@gadgetoid.com'
s.files = Dir.glob('lib/wiringpi/*.rb') + Dir.glob('lib/*.rb') + Dir.glob('ext/**/**/*.{c,h}') + Dir.glob('ext/**/*.{c,h,rb}')
s.homepage = 'http://rubygems.org/gems/wiringpi'
s.extensions = ['ext/wiringpi/extconf.rb']
s.description = 'WiringPi library wrapper for the Raspberry Pi only. Wraps up version 2.x of the Arduino wiring-like WiringPi library into a convinient Ruby gem. Currently includes GPIO functionality, I2C, SPI, serial and shiftOut/shiftIn support in addition to peripheral drivers for things like the MCP23017. Credit to Gordon for the WiringPi library, which can be found here: http://www.wiringpi.com'
end