Sha256: c76c709df37749fe878e1b379b5a2c7df3ebaa82ce301b472067497ce7430f2c

Contents?: true

Size: 679 Bytes

Versions: 11

Compression:

Stored size: 679 Bytes

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

desc "Default: runs the full test suite."
task default: :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "hubspot-api-ruby #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hubspot-api-ruby-0.19.0 Rakefile
hubspot-api-ruby-0.18.0 Rakefile
hubspot-api-ruby-0.17.1 Rakefile
hubspot-api-ruby-0.17.0 Rakefile
hubspot-api-ruby-0.16.0 Rakefile
hubspot-api-ruby-0.15.0 Rakefile
hubspot-api-ruby-0.14.0 Rakefile
hubspot-api-ruby-0.13.0 Rakefile
hubspot-api-ruby-0.12.0 Rakefile
hubspot-api-ruby-0.11.0 Rakefile
hubspot-api-ruby-0.10.0 Rakefile