Sha256: 1e2793c75812ecb968599a3b572fe72e7291d7dc9d52e5107d74975b1ec2491d

Contents?: true

Size: 430 Bytes

Versions: 9

Compression:

Stored size: 430 Bytes

Contents

require "bundler/gem_tasks"
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new do |t|
  t.pattern = "spec/**/*_spec.rb"
end

desc "Default: run all specs"
task :default => [:spec]

task :build => ["axs:make"]

desc "Google Accessibility Developer Tools"
namespace :axs do
  desc "Generate Accessibility Developer Tools axs_testing.js"
  task :make do
    system "cd vendor/accessibility-developer-tools/ && make"
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
access_lint-0.1.3 Rakefile
access_lint-0.1.2 Rakefile
access_lint-0.1.1 Rakefile
access_lint-0.1.0 Rakefile
access_lint-0.0.9 Rakefile
access_lint-0.0.8 Rakefile
access_lint-0.0.4 Rakefile
access_lint-0.0.3 Rakefile
access_lint-0.0.2 Rakefile