Sha256: c47fe8aa679866d670312f5f8ecab6248a5d7723144a9e8dc6dbc801467a372d

Contents?: true

Size: 566 Bytes

Versions: 25

Compression:

Stored size: 566 Bytes

Contents

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.mkd', 'LICENSE.mkd', 'lib/**/*.rb']
    task.options = [
      '--protected',
      '--output-dir', 'doc/yard',
      '--tag', 'format:Supported formats',
      '--tag', 'authenticated:Requires Authentication',
      '--tag', 'rate_limited:Rate Limited',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
socialcastr-0.1.3 Rakefile
socialcastr-0.1.2 Rakefile
socialcastr-0.1.1 Rakefile
socialcastr-0.1.0 Rakefile
socialcastr-0.0.1 Rakefile