Sha256: 0137fe2937ec348043a3e8eb34d75bc948faed47a6d578ae9e013d011b5609b5

Contents?: true

Size: 703 Bytes

Versions: 7

Compression:

Stored size: 703 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 Nitro!
The libraries where installed in '#{dst_dir}'. 

You probably need to install the Glue and Og libraries 
as well. (http://nitro.rubyforge.org)

To verify that everything works correctly, try to run the tiny 
example by issuing:

$ cd exampes/tiny
$ ruby run.rb

at the command line.

Enjoy the magic of Nitro!
}

# * George Moschovitis <gm@navel.gr>

Version data entries

7 entries across 7 versions & 1 rubygems

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