1234567891011121314 |
- #!/usr/bin/env ruby
- # frozen_string_literal: true
- require "pathname"
- ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
- Pathname.new(__FILE__).realpath)
- require "rubygems"
- require "bundler/setup"
- Bundler.require(:default) # This requires all the gems in Gemfile
- # great for lab not so much for apps
- load Gem.bin_path("pry", "pry")
|