1
0
Fork 0
diversipub/Rakefile

11 lines
209 B
Ruby
Raw Normal View History

2023-05-02 08:57:39 +00:00
# frozen_string_literal: true
require 'bundler/gem_tasks'
task default: []
desc 'Open development console'
task :console do
sh 'bundle', 'exec', File.expand_path(File.join('bin', 'console'), __dir__)
end