Module: Development::Tasks
- Defined in:
- lib/development/tasks.rb
Overview
Development tasks
Class Method Summary collapse
-
.install ⇒ Object
Install development tasks.
- .library ⇒ Pathname
- .rake_files ⇒ <String>
Class Method Details
.install ⇒ Object
Install development tasks
20 21 22 |
# File 'lib/development/tasks.rb', line 20 def self.install Rake.add_rakelib(*library.to_s) end |
.library ⇒ Pathname
10 11 12 |
# File 'lib/development/tasks.rb', line 10 def self.library @rake_library ||= Development::Toolbox.root.join('rakelib') end |
.rake_files ⇒ <String>
15 16 17 |
# File 'lib/development/tasks.rb', line 15 def self.rake_files @rake_files ||= Dir[library.join('**/*.rake')] end |