Sha256: 5ffdde3eb83e9cbc53822f1cea9c52ca4f6ad600eabbf2a9c53b0b2751321ca0
Contents?: true
Size: 709 Bytes
Versions: 1
Compression:
Stored size: 709 Bytes
Contents
#!/usr/bin/env ruby # This was added by Merb's bundler require "rubygems" require File.join(File.dirname(__FILE__), "common") gems_dir = File.join(File.dirname(__FILE__), '..', 'gems') if File.directory?(gems_dir) $BUNDLE = true Gem.clear_paths Gem.path.replace([File.expand_path(gems_dir)]) ENV["PATH"] = "#{File.dirname(__FILE__)}:#{ENV["PATH"]}" gem_file = File.join(gems_dir, "specifications", "ruby2ruby-*.gemspec") if local_gem = Dir[gem_file].last version = File.basename(local_gem)[/-([\.\d]+)\.gemspec$/, 1] end end version ||= ">= 0" if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then version = $1 ARGV.shift end gem 'ruby2ruby', version load 'r2r_show'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scottmotte-merb_auth_slice_multisite-0.2.6 | bin/r2r_show |