Sha256: b0e46482d0ff9506ae500f61ad0e735612518635df4dc00b6e7b546bffc7191e
Contents?: true
Size: 485 Bytes
Versions: 1
Compression:
Stored size: 485 Bytes
Contents
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'base_rails_app')) require 'rake' Dir.glob(File.join(WarpDrive::Path.lib.tasks.to_s, '**', '*.*')).sort.each do |task| load File.expand_path(task) unless task.match(/\/private\//) end Dir.glob(File.join(WarpDrive::Path.vendor.plugins.to_s, '*')).sort.each do |plugin| Dir.glob(File.join(plugin, 'tasks', '**', '*.*')).sort.each do |task| load File.expand_path(task) unless task.match(/\/private\//) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
base_rails_app-0.0.1 | lib/base_rails_app/tasks.rb |