forked from toholio/ruby-serialport
-
Notifications
You must be signed in to change notification settings - Fork 58
/
serialport.gemspec
23 lines (20 loc) · 981 Bytes
/
serialport.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/serialport/version', __FILE__)
Gem::Specification.new do |s|
s.name = "serialport"
s.license = "GPL-2"
s.version = SerialPort::VERSION
s.authors = ["Guillaume Pierronnet", "Alan Stern", "Daniel E. Shipton", "Tobin Richard", "Hector Parra", "Ryan C. Payne"]
s.summary = "Library for using RS-232 serial ports."
s.description = "Ruby/SerialPort is a Ruby library that provides a class for using RS-232 serial ports."
s.email = "hector@hectorparra.com"
s.homepage = "http://github.com/hparra/ruby-serialport/"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler", ">= 0.4.1"
s.require_paths = ["lib"]
s.files = `git ls-files`.split($\)
s.extensions = "ext/native/extconf.rb"
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.extra_rdoc_files = ["LICENSE", "README.md"]
end