Sha256: 38808038cd1a063a0ca12e9c864cedab28c145dafcefd0b6681c2e63808b3c16
Contents?: true
Size: 853 Bytes
Versions: 4
Compression:
Stored size: 853 Bytes
Contents
require "rubygems" require "bundler" begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems" exit e.status_code end require "rake" require "rspec/core" require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList["spec/**/*_spec.rb"] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = "spec/**/*_spec.rb" spec.rcov = true end task default: :spec require "rdoc/task" Rake::RDocTask.new do |rdoc| version = File.exist?("VERSION") ? File.read("VERSION") : "" rdoc.rdoc_dir = "rdoc" rdoc.title = "http2 #{version}" rdoc.rdoc_files.include("README*") rdoc.rdoc_files.include("lib/**/*.rb") end Bundler::GemHelper.install_tasks require "best_practice_project" BestPracticeProject.load_tasks
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
http2-0.0.36 | Rakefile |
http2-0.0.35 | Rakefile |
http2-0.0.34 | Rakefile |
http2-0.0.33 | Rakefile |