Method: QEDProject::Project#process_options
- Defined in:
- lib/qedproject/project.rb
#process_options(options) ⇒ Object
Sets instance methods with values from the options hash.
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/qedproject/project.rb', line 85 def () self.libs = [:libs] || [] collect_libraries self.public_dir = [:public_dir] || "public" self.jammit = [:jammit] self.sass = [:sass] self.coffeescript = [:coffeescript] self.verbose = [:verbose] self.testing = [:testing] self.skip_index = [:skip_index] self.livereload = [:livereload] self.no_overwrite = [:no_overwrite] ? true : false self.run_bundle = [:bundle] end |