Sha256: 189ad23a8f2f971c185ff16a6b8fc3aa83449fc353b8f31ec9a713d8b96f5d35
Contents?: true
Size: 539 Bytes
Versions: 10
Compression:
Stored size: 539 Bytes
Contents
require 'bundler/gem_tasks' # Run test by default. task :default => :spec task :test => :spec require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.verbose = !!ENV["VERBOSE"] end require 'yard' YARD::Rake::YardocTask.new(:yardoc) do |y| y.options = ["--output-dir", "yardoc"] end namespace :yardoc do task :clobber do rm_r "yardoc" rescue nil end end task :clobber => "yardoc:clobber" desc "Open an irb session preloaded with this library" task :console do sh "irb -rubygems -I lib -r dnsimple.rb" end
Version data entries
10 entries across 10 versions & 2 rubygems