Sha256: 80931e43ceb1ff2e47d460a8c64ce097899206a870304734d309fc4a535af312

Contents?: true

Size: 371 Bytes

Versions: 3

Compression:

Stored size: 371 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

desc "generate documentation"
require 'yard'
YARD::Rake::YardocTask.new do |yard|
  yard.files = ['lib/**/*.rb']
  yard.options = ["--no-private"]
end

desc "run all specs"
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

task :test => [:spec]
task :doc => [:yard]
task :default => [:test, :doc, :build]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twiauth-1.0.0.rc3 Rakefile
twiauth-1.0.0.rc2 Rakefile
twiauth-1.0.0.rc1 Rakefile