Sha256: cfb90a02c71f05f16e86e4ab23404b869a8216a29dfe5c2fbfaf69edeea1d558

Contents?: true

Size: 383 Bytes

Versions: 10

Compression:

Stored size: 383 Bytes

Contents

# frozen_string_literal: true

require 'active_support/core_ext/object/blank'

if File.exist?("#{__dir__}/lib/.env.development")
  # This loads our development environment when running dev.
  require 'dotenv'
  Dotenv.load('.env.development')
end

require 'pry-byebug' if ENV['BRANCH_NAME_ENV'] == 'development'

Dir.glob("#{__dir__}/name/**/*.rb").each do |file|
  require file
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
branch-name-4.0.3 lib/branch/name.rb
branch-name-4.0.2 lib/branch/name.rb
branch-name-4.0.1 lib/branch/name.rb
branch-name-4.0.0 lib/branch/name.rb
branch-name-3.10.10 lib/branch/name.rb
branch-name-3.10.9 lib/branch/name.rb
branch-name-3.10.8 lib/branch/name.rb
branch-name-3.10.7 lib/branch/name.rb
branch-name-3.10.6 lib/branch/name.rb
branch-name-3.10.5 lib/branch/name.rb