File: ruby-termios.gemspec

package info (click to toggle)
ruby-termios 1.0.0-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 168 kB
  • sloc: ansic: 1,163; ruby: 389; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
Gem::Specification.new do |s|
  s.name = %q{ruby-termios}
  s.version = "1.0.0"
  s.date = %q{2013-04-11}

  s.authors = ["akira yamada"]
  s.email = %q{akira@arika.org}
  s.description = <<E
Termios module is simple wrapper of termios(3).  It can be included into
IO-family classes and can extend IO-family objects.  In addition, the methods
can use as module function.
E
  s.extra_rdoc_files = ["README", "ChangeLog"]
  s.extensions = ["ext/extconf.rb"]
  s.files = ["README", "ChangeLog", "test/test0.rb", "lib/termios.rb", "examples/secret_input1.rb", "examples/modem_check2.rb", "examples/modem_check0.rb", "examples/secret_input2.rb", "examples/modem_check1.rb", "ext/termios.c"]
  s.bindir = false
  s.has_rdoc = true
  s.homepage = %q{http://arika.org/ruby/termios}
  s.rdoc_options = ["--title", "ruby-termios documentation", "--charset", "utf-8", "--opname", "index.html", "--line-numbers", "--main", "README", "--inline-source", "--exclude", "^(examples|extras)/"]
  s.rubyforge_project = %q{termios}
  s.summary = %q{a simple wrapper of termios(3)}

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2

    if current_version >= 3 then
    else
    end
  else
  end
end