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.2.19 Rakefile
socialcastr-0.2.18 Rakefile
socialcastr-0.2.17 Rakefile
socialcastr-0.2.16 Rakefile
socialcastr-0.2.15 Rakefile
socialcastr-0.2.14 Rakefile
socialcastr-0.2.13 Rakefile
socialcastr-0.2.12 Rakefile
socialcastr-0.2.11 Rakefile
socialcastr-0.2.10 Rakefile
socialcastr-0.2.9 Rakefile
socialcastr-0.2.8 Rakefile
socialcastr-0.2.7 Rakefile
socialcastr-0.2.6 Rakefile
socialcastr-0.2.5 Rakefile
socialcastr-0.2.4 Rakefile
socialcastr-0.2.3 Rakefile
socialcastr-0.2.2 Rakefile
socialcastr-0.2.1 Rakefile
socialcastr-0.2.0 Rakefile