Sha256: 7df46e68fadca6f3289574ed1086c464ac41932296bad684a3a0d49f23ef01e4

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 KB

Contents

# encoding: utf-8

require File.expand_path(File.join(File.dirname(__FILE__), '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", 'Jakub Šťastný', 'Daniel Neighman', 'Daniel Vartanov'].sort
    s.files = FileList["[A-Z]*", "{lib,spec,rails}/**/*"]
    s.add_dependency 'fuzzyhash', '>=0.0.11'
    s.rubyforge_project = 'joshbuddy-usher'
  end
  Jeweler::GemcutterTasks.new
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

4 entries across 4 versions & 1 rubygems

Version Path
usher-0.6.3 Rakefile
usher-0.6.2 Rakefile
usher-0.6.1 Rakefile
usher-0.6.0 Rakefile