Sha256: 3b909e69fe702028c07ff6108e10a51a32c992a6e36141c1530ae45d6a3fe224
Contents?: true
Size: 906 Bytes
Versions: 6
Compression:
Stored size: 906 Bytes
Contents
require 'rake' require 'rspec/core/rake_task' require 'rake/rdoctask' desc 'Default: run unit tests.' task :default => :spec RSpec::Core::RakeTask.new do |t| t.pattern = 'spec/**/*_spec.rb' end desc 'Generate documentation for the instrumental plugin.' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Instrumental' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('lib/**/*.rb') end desc "Default: run the specs" task :default => [:spec] begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "instrumental" s.summary = s.description = "Rails instrumentation and client for imperialapp.com" s.email = "support@imperialapp.com" s.homepage = "http://github.com/imperialapp/instrumental" s.authors = ["Douglas F Shearer"] s.files = `git ls-files`.split("\n") end end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
instrumental-0.1.9 | Rakefile |
instrumental-0.1.8 | Rakefile |
instrumental-0.1.7 | Rakefile |
instrumental-0.1.6 | Rakefile |
instrumental-0.1.5 | Rakefile |
instrumental-0.1.4 | Rakefile |