File: os.rb

package info (click to toggle)
ruby-whenever 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 328 kB
  • sloc: ruby: 2,722; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 103 bytes parent folder | download
1
2
3
4
5
6
7
module Whenever
  module OS
    def self.solaris?
      (/solaris/ =~ RUBY_PLATFORM)
    end
  end
end