mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
361 B
Ruby
15 lines
361 B
Ruby
|
#
|
||
|
# TkImg - format 'bmp'
|
||
|
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
||
|
#
|
||
|
require 'tk'
|
||
|
|
||
|
# call setup script for general 'tkextlib' libraries
|
||
|
require 'tkextlib/setup.rb'
|
||
|
|
||
|
# call setup script
|
||
|
require File.join(File.dirname(File.expand_path(__FILE__)), 'setup.rb')
|
||
|
|
||
|
#TkPackage.require('img::bmp', '1.3')
|
||
|
TkPackage.require('img::bmp')
|