Sha256: c21704162616fc07925fff7fb987b86c2db50e6f75d7699c9ef7ef6e55f92d0a
Contents?: true
Size: 537 Bytes
Versions: 21
Compression:
Stored size: 537 Bytes
Contents
# frozen_string_literal: true require_relative "task" module SyntaxTree module Rake # A Rake task that runs write on a set of source files. # # Example: # # require "syntax_tree/rake/write_task" # # SyntaxTree::Rake::WriteTask.new do |t| # t.source_files = "{app,config,lib}/**/*.rb" # end # # This will create task that can be run with: # # rake stree:write # class WriteTask < Task private def command "write" end end end end
Version data entries
21 entries across 21 versions & 1 rubygems