Sha256: 4325ac7c35245ba2c6234bf030daa82a804ca9c0cc97be681f6a04d461b16767

Contents?: true

Size: 1.73 KB

Versions: 6

Compression:

Stored size: 1.73 KB

Contents

#
# Author:: Adam Jacob (<adam@chef.io>)
# Author:: Daniel DeLeo (<dan@chef.io>)
# Author:: Seth Chisamore (<schisamo@chef.io>)
# Copyright:: Copyright (c) 2008-2015 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'bundler'
Bundler::GemHelper.install_tasks

# require 'rubygems'
# require 'rake/gempackagetask'
require 'rdoc/task'

begin
  require 'sdoc'
  require 'rdoc/task'

  RDoc::Task.new do |rdoc|
    rdoc.title = 'Chef Ruby API Documentation'
    rdoc.main = 'README.rdoc'
    rdoc.options << '--fmt' << 'shtml' # explictly set shtml generator
    rdoc.template = 'direct' # lighter template
    rdoc.rdoc_files.include('README.rdoc', 'LICENSE', 'spec/tiny_server.rb', 'lib/**/*.rb')
    rdoc.rdoc_dir = 'rdoc'
  end
rescue LoadError
  puts 'sdoc is not available. (sudo) gem install sdoc to generate rdoc documentation.'
end

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/unit/**/*_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

6 entries across 6 versions & 1 rubygems

Version Path
knife-ec2-0.18.0 Rakefile
knife-ec2-0.17.0 Rakefile
knife-ec2-0.16.0 Rakefile
knife-ec2-0.15.0 Rakefile
knife-ec2-0.14.0 Rakefile
knife-ec2-0.13.0 Rakefile