Module: HighFive::AndroidTasks
- Included in:
- Cli
- Defined in:
- lib/high_five/android_tasks.rb
Class Method Summary collapse
Class Method Details
.included(mod) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/high_five/android_tasks.rb', line 3 def self.included(mod) mod.class_eval do namespace "android" desc "android_debug", "build the debug apk via ant debug" def android_debug self.destination_root = base_config.root puts "Debugy" end end #end class_eval end |