Sha256: d14b07ce552007b8461a3b2ca8d3bbb7a0d1111ba3236f6c5dd638396b40493a

Contents?: true

Size: 1.38 KB

Versions: 9

Compression:

Stored size: 1.38 KB

Contents

require 'lib/usher'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "usher"
    s.description = s.summary = "A general purpose routing library"
    s.email = "joshbuddy@gmail.com"
    s.homepage = "http://github.com/joshbuddy/usher"
    s.authors = ["Joshua Hull"]
    s.files = FileList["[A-Z]*", "{lib,spec,rails}/**/*"]
    s.add_dependency 'fuzzyhash', '>=0.0.6'
    s.rubyforge_project = 'joshbuddy-usher'
  end
  Jeweler::RubyforgeTasks.new do |rubyforge|
    rubyforge.doc_task = "rdoc"
    rubyforge.remote_doc_path = ''
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

require 'spec'
require 'spec/rake/spectask'
task :spec => 'spec:all'
namespace(:spec) do
  Spec::Rake::SpecTask.new(:all) do |t|
    t.spec_opts ||= []
    t.spec_opts << "-rubygems"
    t.spec_opts << "--options" << "spec/spec.opts"
    t.spec_files = FileList['spec/**/*_spec.rb']
  end

end

desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('spec_with_rcov') do |t|
  t.spec_files = FileList['spec/**/*.rb']
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec']
end

require 'rake/rdoctask'
desc "Generate documentation"
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
  rd.rdoc_dir = 'rdoc'
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
joshbuddy-usher-0.5.2 Rakefile
joshbuddy-usher-0.5.3 Rakefile
joshbuddy-usher-0.5.4 Rakefile
joshbuddy-usher-0.5.6 Rakefile
usher-0.5.6 Rakefile
usher-0.5.5 Rakefile
usher-0.5.4 Rakefile
usher-0.5.3 Rakefile
usher-0.5.2 Rakefile