File: serialport.gemspec

package info (click to toggle)
ruby-serialport 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 200 kB
  • sloc: ansic: 1,425; ruby: 74; sh: 16; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 1,013 bytes parent folder | download
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 = "http://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