Sha256: 5f3df3cce4936c778743e1089128335a1ee6f3b5dbf423c74d7c7febcd3cbc8d

Contents?: true

Size: 405 Bytes

Versions: 6

Compression:

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tweetstream-2.3.0 Rakefile
tweetstream-2.2.0 Rakefile
tweetstream-2.1.0 Rakefile
tweetstream-2.0.1 Rakefile
tweetstream-2.0.0 Rakefile
tweetstream-1.1.0.rc1 Rakefile