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 |
---|---|
fullcontacter-0.3.2 | Rakefile |
fullcontact-0.3.1 | Rakefile |
fullcontact-0.3.0 | Rakefile |
fullcontact-0.2.0 | Rakefile |
fullcontact-0.1.4 | Rakefile |
fullcontact-0.1.3 | Rakefile |