Sha256: 87618c18592ea07c65d1c0e6c480bdb2b72eaf0b25b4774dec875caa1368d94b

Contents?: true

Size: 498 Bytes

Versions: 3

Compression:

Stored size: 498 Bytes

Contents

#encoding: utf-8

require 'colorize'

task :default => [:test]

task :test do
  ruby "test/test.rb"
end

namespace :test do

  desc "Unitary tests. Fasts and on the sources."
  task :test do
    puts
    ruby "test/test.rb"
  end

  desc "Functional tests. Slow, test real the features under real conditions of usage."
  task :functional do
    puts "!!! Important !!!".yellow
    puts "You have to access to internet to test the generator.".yellow
    puts
    ruby "test/functional.rb"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nephos-server-0.6.8 Rakefile
nephos-server-0.6.7 Rakefile
nephos-server-0.6.5 Rakefile