Sha256: 38c85e9698245a2b2feedb02a520259621d99b41b0cac1009be7a0d2355736c5
Contents?: true
Size: 470 Bytes
Versions: 4
Compression:
Stored size: 470 Bytes
Contents
require "bundler/gem_tasks" require 'yard' desc "Test the things" require 'vault-test-tools/rake_task' desc "Doc the things" YARD::Rake::YardocTask.new desc "Create test databases and run the test suite" task :default => [:test] desc "Run all pull schema tasks (all tasks that match pull_.*_schema)" task :pull_schemas do Rake::Task.tasks.select { |task| task.name =~ /pull_.*_schema/ }.each do |task| puts "Invoking #{task.name}..." task.invoke end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vault-tools-0.4.12 | Rakefile |
vault-tools-0.4.11 | Rakefile |
vault-tools-0.4.10 | Rakefile |
vault-tools-0.4.9 | Rakefile |