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

Version Path
glue-0.21.2 install.rb
glue-0.23.0 install.rb
glue-0.21.0 install.rb
glue-0.22.0 install.rb
glue-0.24.0 install.rb
glue-0.25.0 install.rb
glue-0.26.0 install.rb
og-0.21.2 install.rb
og-0.21.0 install.rb
og-0.22.0 install.rb
og-0.25.0 install.rb
og-0.24.0 install.rb
og-0.26.0 install.rb
og-0.23.0 install.rb