File: Rakefile

package info (click to toggle)
ruby-termios 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: ansic: 1,163; ruby: 377; sh: 4; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
require 'bundler/gem_tasks'
require 'rake/extensiontask'

task build: :compile

Rake::ExtensionTask.new('termios') do |ext|
  ext.ext_dir = 'ext'
  ext.lib_dir = 'lib'
end

task default: [:clobber, :compile]