1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
=begin
Copyright (c) 2008-2011 Ruby-GNOME2 Project Team
This program is licensed under the same licence as Ruby-GNOME2.
=end
require 'gtk3'
base_dir = Pathname.new(__FILE__).dirname.dirname.expand_path
vendor_dir = base_dir + "vendor" + "local"
vendor_bin_dir = vendor_dir + "bin"
GLib.prepend_dll_path(vendor_bin_dir)
begin
major, minor, = RUBY_VERSION.split(/\./)
require "#{major}.#{minor}/gtksourceview3.so"
rescue LoadError
require "gtksourceview3.so"
end
require 'gtksourceview3/deprecated'
|