Sha256: 08bd2129a6b769904ab7ebf4fead15e76587850a064205bb407888cab838e598

Contents?: true

Size: 307 Bytes

Versions: 10

Compression:

Stored size: 307 Bytes

Contents

#! /usr/bin/env ruby
require 'rake'

task :default => [ :test, :run ]

task :test do
  FileUtils.cd 'spec' do
    sh 'rspec user_spec.rb --backtrace --color --format doc'
  end
  File.delete 'db/spec.db' if File.exists? 'db/spec.db'
end

task :run do
  sh 'thin -R config.ru -p 4567 start'
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gennaro-0.3.3 templates/authentication/Rakefile
gennaro-0.3.2.3 templates/authentication/Rakefile
gennaro-0.3.2.2 templates/authentication/Rakefile
gennaro-0.3.2.1 templates/authentication/Rakefile
gennaro-0.3.2 templates/authentication/Rakefile
gennaro-0.3.1.3 templates/authentication/Rakefile
gennaro-0.3.1.2 templates/authentication/Rakefile
gennaro-0.3.1.1 templates/authentication/Rakefile
gennaro-0.3.1 templates/authentication/Rakefile
gennaro-0.3 templates/authentication/Rakefile