Sha256: 91e0e191e7ba6e95c09baf2ee76543daebdba7abd2dc18f0872a1c1fbf97edc2
Contents?: true
Size: 526 Bytes
Versions: 31
Compression:
Stored size: 526 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require 'irb' require 'bundler/setup' gemspec = Dir.glob(File.expand_path("../../*.gemspec", __FILE__)).first spec = Gem::Specification.load(gemspec) # Add the require paths to the $LOAD_PATH spec.require_paths.each do |path| full_path = File.expand_path("../" + path, __dir__) $LOAD_PATH.unshift(full_path) unless $LOAD_PATH.include?(full_path) end spec.require_paths.each do |path| require "./lib/prefab-cloud-ruby" end # Start an IRB session IRB.start(__FILE__)
Version data entries
31 entries across 31 versions & 1 rubygems