Sha256: a42f8739ca5cd55bdde7e38b5edb5a72dbe1d8031eb71cc8c43b5bf7f07de6a7
Contents?: true
Size: 728 Bytes
Versions: 3
Compression:
Stored size: 728 Bytes
Contents
#!/usr/bin/env rake # Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. require 'pathname' ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../Gemfile", Pathname.new(__FILE__).realpath) require 'rubygems' require 'bundler/setup' require 'gemtools/rake_task' require 'rake/dsl_definition' require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) do |spec| spec.rspec_opts = ['--backtrace'] end Bundler::GemHelper.install_tasks Gemtools::RakeTask.install_tasks task :default => :spec require 'rdoc/task' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = "rdoc" rdoc.rdoc_files.add "lib/**/*.rb", "README.rdoc" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
debug-bar-1.1.1 | Rakefile |
debug-bar-1.1.0 | Rakefile |
debug-bar-1.0.1 | Rakefile |