diff options
Diffstat (limited to 'ext/tk/lib/tkextlib/tkimg/xpm.rb')
-rw-r--r-- | ext/tk/lib/tkextlib/tkimg/xpm.rb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/ext/tk/lib/tkextlib/tkimg/xpm.rb b/ext/tk/lib/tkextlib/tkimg/xpm.rb deleted file mode 100644 index 7708b9d427..0000000000 --- a/ext/tk/lib/tkextlib/tkimg/xpm.rb +++ /dev/null @@ -1,34 +0,0 @@ -# frozen_string_literal: false -# -# TkImg - format 'xpm' -# by Hidetoshi NAGAI ([email protected]) -# -require 'tk' - -# call setup script for general 'tkextlib' libraries -require 'tkextlib/setup.rb' - -# call setup script -require 'tkextlib/tkimg/setup.rb' - -# TkPackage.require('img::xpm', '1.3') -TkPackage.require('img::xpm') - -module Tk - module Img - module XPM - PACKAGE_NAME = 'img::xpm'.freeze - def self.package_name - PACKAGE_NAME - end - - def self.package_version - begin - TkPackage.require('img::xpm') - rescue - '' - end - end - end - end -end |