Sha256: 005eb58244ef2a8ba9d0a22f5420df7f23f624872f5c8a3e559bd0c0ca836fcc
Contents?: true
Size: 760 Bytes
Versions: 2
Compression:
Stored size: 760 Bytes
Contents
require 'rake' begin require 'bundler' rescue LoadError => e STDERR.puts e.message STDERR.puts "Run `gem install bundler` to install Bundler." exit e.status_code end begin Bundler.setup(:development) rescue Bundler::BundlerError => e STDERR.puts e.message STDERR.puts "Run `bundle install` to install missing gems." exit e.status_code end require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |t| t.ruby_opts = "-w" t.rspec_opts = ['--format', 'documentation', '--color'] end task :default => :spec task :test => :spec # for `gem test` require 'yard' YARD::Rake::YardocTask.new do |t| t.options = ['--verbose'] end # Load all extra rake tasks Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].each { |ext| load ext }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rtsp-0.2.1 | Rakefile |
rtsp-0.2.0 | Rakefile |