Sha256: 36b9cca9b4fb15e96d7257c04a2eabcdcd0a4d74d04b105e3469496e7a64debf
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 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 'joshbuddy-fuzzy_hash', '>=0.0.3' 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
Version data entries
7 entries across 7 versions & 1 rubygems