Sha256: 4689920a203c4fc7f7573c5bc8a79ba210b65eb447ff47c2d7aa006267b1abee
Contents?: true
Size: 678 Bytes
Versions: 1
Compression:
Stored size: 678 Bytes
Contents
# Subject to debate. Dir['{app,core/*,extensions/*}/tasks/**/*.rake'].each { |rb| load rb } task :default => :test desc "Runs tests." task :test do $:.unshift File.join(File.dirname(__FILE__), 'test') ( Dir['test/unit/*.rb'].sort + Dir['test/stories/*.rb'].sort ).each { |file| load file } end namespace :doc do desc "Update documentation." task :update do # gem proscribe ~> 0.0.2 system "proscribe build" end desc "Updates the Aura homepage with the manual." task :deploy => :update do # http://github.com/rstacruz/git-update-ghpages system "git update-ghpages buildwithaura/buildwithaura.github.com --branch master -i doc/" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aura-0.0.1.pre10 | Rakefile |