forked from toholio/ruby-serialport
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathserialport.gemspec
More file actions
25 lines (22 loc) · 1013 Bytes
/
serialport.gemspec
File metadata and controls
25 lines (22 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$: << "lib"
require "serialport/version"
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", "Lars Kanis"]
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 = "lars@greiz-reinsdorf.de"
s.homepage = "https://github.com/larskanis/ruby-serialport/"
s.required_ruby_version = '>= 2.5'
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