Sha256: 7f5fbe84c7cd2b496dc776e567313359098600a9bde4469437e3338f9c3962fb
Contents?: true
Size: 516 Bytes
Versions: 15
Compression:
Stored size: 516 Bytes
Contents
module Padrino ## # This module it's used for bootstrap with padrino rake # thirdy party tasks, in your gem/plugin/extension you # need only do this: # # ==== Examples # # Padrino::Tasks.files << yourtask.rb # Padrino::Tasks.files.concat(Dir["/path/to/all/my/tasks/*.rb"]) # Padrino::Tasks.files.unshift("yourtask.rb") # module Tasks ## # Returns a list of files to handle with padrino rake # def self.files @files ||= [] end end # Tasks end # Padrino
Version data entries
15 entries across 15 versions & 1 rubygems