Sha256: 64dd33466d738453ebd1333a8fbb1043594974eed06dc286209384cb2ba29c25

Contents?: true

Size: 357 Bytes

Versions: 11

Compression:

Stored size: 357 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

begin
  require 'rspec/core/rake_task'

  task :default => :spec

  desc "Run all specs in spec directory"
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.pattern = 'spec/**/*_spec.rb'
  end

rescue LoadError
  STDERR.puts "\n*** RSpec not available. (sudo) gem install rspec to run unit tests. ***\n\n"
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
knife-server-1.1.0 Rakefile
knife-server-1.0.1 Rakefile
knife-server-1.0.0 Rakefile
knife-server-0.3.3 Rakefile
knife-server-0.3.2 Rakefile
knife-server-0.3.1 Rakefile
knife-server-0.3.0 Rakefile
knife-server-0.2.2 Rakefile
knife-server-0.2.1 Rakefile
knife-server-0.2.0 Rakefile
knife-server-0.1.0 Rakefile