Sha256: 0901cd2ed63b93a31b89beaac53b302851a1cab6cbb82ea5f0cb85b8da1134c1
Contents?: true
Size: 670 Bytes
Versions: 10
Compression:
Stored size: 670 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 # === Usage === # # init.rb # bundler begin require_relative "gems/environment.rb" rescue LoadError => exception abort "LoadError during loading gems/environment: #{exception.message}\nRun gem bundle to fix it." end # setup $: pupu_libdir = File.expand_path("../../lib") raise Errno::ENOENT, "#{pupu_libdir} doesn't exist" unless File.directory?(pupu_libdir) $:.unshift(pupu_libdir) # load and boot rango require "rango" require "pupu/adapters/rango" # this has to be loaded before rango boot Rango.boot # if you will run this script with -i argument, interactive session will begin Rango.interactive if ARGV.delete("-i")
Version data entries
10 entries across 10 versions & 1 rubygems