# Load constants files require_relative 'constants'
# Load Configuration
(right now only package.json) require_relative “config” include Configuration
# Import all rake tasks Dir.glob(TASK_FILES).each { |task_file| import task_file }
task :default do
puts "Rebo, rake command line tool."
end