Sha256: fb83426ee044e9952b5bee27394055e48f10059209097036498621d77e7ffff4
Contents?: true
Size: 480 Bytes
Versions: 6
Compression:
Stored size: 480 Bytes
Contents
require 'bundler/setup' require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks RSpec::Core::RakeTask.new do |task| task.rspec_opts = "-I ./test_app/spec" task.pattern = "./test_app/spec/**/*_spec.rb" end task :test => :spec task :default => :spec namespace :impressionist do require File.dirname(__FILE__) + "/lib/impressionist/bots" desc "output the list of bots from http://www.user-agents.org/" task :bots do p Impressionist::Bots.consume end end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
impressionist-1.4.1 | Rakefile |
impressionist-1.4.0 | Rakefile |
impressionist-1.3.2 | Rakefile |
impressionist-1.3.1 | Rakefile |
impressionist-1.3.0 | Rakefile |
impressionist-1.2.0 | Rakefile |