Sha256: 3d8e52dbb894509740af5602542ba23563f451b212d0ca2fcd8f13c414eae932

Contents?: true

Size: 373 Bytes

Versions: 1

Compression:

Stored size: 373 Bytes

Contents

require_relative './config/environment'

def reload!
  # load_all "./config" if Dir.exists?("./config")
  # load_all "./bin" if Dir.exists?("./bin")
  load_all "./lib" if Dir.exists?("./lib")
  load_all "./*.rb" if Dir.entries(".").include?(/\.rb/)
end

task :console do
  puts "Loading the environment."
  reload!
  puts "Console Initiated. Begin, master."
  Pry.start
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
weworkremotely-1.3.3 Rakefile