repl 371 B

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