-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnrf24-ruby.gemspec
More file actions
24 lines (19 loc) · 1.19 KB
/
nrf24-ruby.gemspec
File metadata and controls
24 lines (19 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nrf24/version'
Gem::Specification.new do |spec|
spec.name = "nrf24l01-ruby"
spec.version = NRF24::VERSION
spec.authors = ["Rogier Lodewijks"]
spec.email = ["rogier@lodewijks.org"]
spec.summary = %q{nrf24-ruby is a pure Ruby library for controlling the ubiquitous Nordic nRF24l01(+) radio module.}
spec.description = %q{nrf24-ruby is a pure Ruby library for controlling the ubiquitous Nordic nRF24l01(+) radio module. Currently primary target is the Raspberry Pi, but it shouldn't be too hard to port to a different platform (supporting SPI). No webserver, no message bus, no frills, yet a fully functional lib written in clear Ruby.}
spec.homepage = "https://github.com/eflukx/nrf24-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib", "lib/nrf24"]
spec.add_dependency 'bcm2835', '~> 0.0', '>= 0.0.1'
end