Sha256: e5bb68a16972a93fdfbc4e9538efdb26f80fb291463c16b9bcc2304088609b79

Contents?: true

Size: 426 Bytes

Versions: 7

Compression:

Stored size: 426 Bytes

Contents

#!/usr/bin/env rake

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   = ['RELEASE_NOTES.md', 'LICENSE.md', 'lib/**/*.rb']
    task.options = [
      '--output-dir', 'doc/yard',
      '--markup', 'markdown',
    ]
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tweetstream-1.1.5 Rakefile
tweetstream-1.1.4 Rakefile
tweetstream-1.1.3 Rakefile
tweetstream-1.1.2 Rakefile
tweetstream-1.1.1 Rakefile
tweetstream-1.1.0 Rakefile
tweetstream-1.1.0.rc2 Rakefile