bin/hanami-assets in hanami-assets-0.2.1 vs bin/hanami-assets in hanami-assets-0.3.0

- old
+ new

@@ -3,19 +3,19 @@ require 'optparse' require 'pathname' options = {} OptionParser.new do |opts| - opts.banner = "Usage: hanami-assets --config=path/to/config.rb" + opts.banner = 'Usage: hanami-assets --config=path/to/config.rb' - opts.on("-c", "--config FILE", "Path to config") do |c| + opts.on('-c', '--config FILE', 'Path to config') do |c| options[:config] = c end end.parse! -config = options.fetch(:config) { raise ArgumentError.new("You must specify a configuration file") } +config = options.fetch(:config) { raise ArgumentError.new('You must specify a configuration file') } config = Pathname.new(config) -config.exist? or raise ArgumentError.new("Cannot find configuration file: #{ config }") +config.exist? or raise ArgumentError.new("Cannot find configuration file: #{config}") # rubocop:disable Style/AndOr require 'hanami/assets' load config Hanami::Assets.deploy