Sha256: 2a140f261f5f970120e61cc30026c049bcbaeb0b4a0fdc84618a71a83abdf1a3

Contents?: true

Size: 457 Bytes

Versions: 3

Compression:

Stored size: 457 Bytes

Contents

ENV["FOOBARA_ENV"] ||= "development"

if File.exist?("#{__dir__}/../Gemfile")
  # Seems we are not being ran as a gem executable. Let's bundle since we might be in a test or
  # we might be pointed at via path: or some other similar situation.
  ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
  require "bundler/setup"
end

if ENV["FOOBARA_ENV"] == "development" || ENV["FOOBARA_ENV"] == "test"
  require "pry"
  require "pry-byebug"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
extract-repo-0.0.8 boot/start.rb
extract-repo-0.0.7 boot/start.rb
extract-repo-0.0.6 boot/start.rb