tasks/mina/bundler.rb in mina-1.2.4 vs tasks/mina/bundler.rb in mina-1.2.5
- old
+ new
@@ -1,21 +1,23 @@
+# frozen_string_literal: true
+
require 'mina/default'
set :bundle_bin, 'bundle'
set :bundle_path, 'vendor/bundle'
set :bundle_withouts, 'development test'
-set :bundle_options, -> { %{--without #{fetch(:bundle_withouts)} --path "#{fetch(:bundle_path)}" --deployment} }
+set :bundle_options, -> { %(--without #{fetch(:bundle_withouts)} --path "#{fetch(:bundle_path)}" --deployment) }
set :shared_dirs, fetch(:shared_dirs, []).push(fetch(:bundle_path))
namespace :bundle do
desc 'Install gem dependencies using Bundler.'
task :install do
- comment %{Installing gem dependencies using Bundler}
- command %{#{fetch(:bundle_bin)} install #{fetch(:bundle_options)}}
+ comment %(Installing gem dependencies using Bundler)
+ command %(#{fetch(:bundle_bin)} install #{fetch(:bundle_options)})
end
desc 'Cleans up unused gems in your bundler directory'
task :clean do
- comment %{Cleans up unsed gems}
- command %{#{fetch(:bundle_bin)} clean #{fetch(:bundle_options)}}
+ comment %(Cleaning up unused gems)
+ command %(#{fetch(:bundle_bin)} clean)
end
end