Sha256: e03d128f2aec943fd82ea360c95897b724e68b71e275cb59f543452ff27e34dd
Contents?: true
Size: 930 Bytes
Versions: 4
Compression:
Stored size: 930 Bytes
Contents
require 'rubygems' require 'rake' require 'rcov' require 'spec/rake/spectask' task :default => 'rcov' desc "Run all specs and rcov in a non-sucky way" Spec::Rake::SpecTask.new(:rcov) do |t| t.spec_opts = IO.readlines("spec/spec.opts").map {|l| l.chomp.split " "}.flatten t.spec_files = FileList['spec/**/*_spec.rb'] t.rcov = true t.rcov_opts = IO.readlines("spec/rcov.opts").map {|l| l.chomp.split " "}.flatten end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "ruhl" gemspec.summary = "Ruby Hypertext Language" gemspec.description = "Make your HTML dynamic with the addition of a ruby attribute." gemspec.email = "andy@stonean.com" gemspec.homepage = "http://github.com/stonean/ruhl" gemspec.authors = ["Andrew Stone"] end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
stonean-ruhl-0.1.0 | Rakefile |
stonean-ruhl-0.2.0 | Rakefile |
stonean-ruhl-0.3.0 | Rakefile |
stonean-ruhl-0.4.0 | Rakefile |