Sha256: 192ac7d69aa88828ff1fdb166784877718e190391fba999f4e14cf95375afc2e

Contents?: true

Size: 578 Bytes

Versions: 26

Compression:

Stored size: 578 Bytes

Contents

#!/usr/bin/env rake

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :test => :spec
task :default => :spec

namespace :doc do
  require 'yard'
  YARD::Rake::YardocTask.new do |task|
    task.files   = ['HISTORY.md', 'LICENSE.md', 'lib/**/*.rb']
    task.options = [
      '--protected',
      '--output-dir', 'doc',
      '--tag', 'format:Supported formats',
      '--tag', 'authenticated:Requires Authentication',
      '--tag', 'rate_limited:Rate Limited',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

26 entries across 26 versions & 3 rubygems

Version Path
fullcontact-api-ruby-0.1.0 Rakefile
fullcontact-0.18.0 Rakefile
fullcontact-0.17.0 Rakefile
fullcontact-0.16.0 Rakefile
fullcontact-0.15.0 Rakefile
fullcontact-0.14.0 Rakefile
fullcontact-0.13.0 Rakefile
fullcontact-0.12.0 Rakefile
fullcontact-0.11.0 Rakefile
fullcontact-0.10.0 Rakefile
fullcontact-0.9.0 Rakefile
fullcontact-0.8.2 Rakefile
fullcontact-0.7.0 Rakefile
fullcontact-0.6.1 Rakefile
fullcontact-0.6.0 Rakefile
fullcontact-0.5.0 Rakefile
fullcontact-0.4.4 Rakefile
fullcontact-0.4.1 Rakefile
fullcontact-0.3.3 Rakefile
fullcontact-0.3.2 Rakefile