Sha256: cb4f74211e4a33f5b7a581bb33b938484473fd6d42368f4c06ed84b58ea1ecdb
Contents?: true
Size: 678 Bytes
Versions: 14
Compression:
Stored size: 678 Bytes
Contents
#!/usr/bin/env ruby require 'rbconfig' require 'ftools' dst_dir = Config::CONFIG['sitelibdir'] Dir.chdir('lib') do Dir['**/*.rb'].each do |file| File.mkpath File.join(dst_dir, File.dirname(file)), true File.install file, File.join(dst_dir, file), 0644, true end end puts %{ --- Congratulations, you have successfully installed Og! The libraries where installed in '#{dst_dir}'. You probably need to install the Glue library as well. (http://nitro.rubyforge.org) To verify that everything works correctly, try to run an example by issuing: $ cd examples $ ruby run.rb at the command line. Enjoy the magic of Og! } # * George Moschovitis <gm@navel.gr>
Version data entries
14 entries across 14 versions & 2 rubygems