bin/console in phobos-1.8.0 vs bin/console in phobos-1.8.1

- old
+ new

@@ -1,6 +1,7 @@ #!/usr/bin/env ruby +# frozen_string_literal: true require 'irb' require 'bundler/setup' require 'phobos' @@ -9,9 +10,10 @@ # (If you use this, don't forget to add pry to your Gemfile!) # require 'pry' # Pry.start -config_path = ENV['CONFIG_PATH'] || (File.exist?('config/phobos.yml') ? 'config/phobos.yml' : 'config/phobos.yml.example') +config_path = ENV['CONFIG_PATH'] || + (File.exist?('config/phobos.yml') ? 'config/phobos.yml' : 'config/phobos.yml.example') Phobos.configure(config_path) IRB.start