Module: HighFive::Thor::Tasks

Defined in:
lib/high_five/thor/tasks.rb,
lib/high_five/thor/tasks/ios.rb,
lib/high_five/thor/tasks/dist.rb,
lib/high_five/thor/tasks/init.rb,
lib/high_five/thor/tasks/deploy.rb,
lib/high_five/thor/tasks/android.rb,
lib/high_five/thor/tasks/development.rb

Defined Under Namespace

Classes: Android, Deploy, Development, Dist, Init, Ios

Class Method Summary collapse

Class Method Details

.loadObject



4
5
6
7
8
9
10
11
# File 'lib/high_five/thor/tasks.rb', line 4

def self.load
  Dir.glob(File.join(File.dirname(__FILE__), 'tasks', '**/*.rb')) do |file|
    if File.file?(file)
      ::Thor::Util.load_thorfile(file)
      require file
    end
  end
end