Sha256: 410c8c08310e8b3c3ec0d37433a23c06e4c92703468502e4d5946368241cffe6

Contents?: true

Size: 1.22 KB

Versions: 14

Compression:

Stored size: 1.22 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "kookaburra"
  gem.homepage = "http://github.com/projectdx/kookaburra"
  gem.license = "MIT"
  gem.summary = %Q{WindowDriver testing pattern for Ruby apps}
  gem.description = %Q{Cucumber + Capybara = Kookaburra? It made sense at the time.}
  gem.email = "johnwilger@gmail.com"
  gem.authors = ["John Wilger", "Sam Livingston-Gray", "Ravi Gadad"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core/rake_task'

task :default => :spec

desc 'Run specs'
RSpec::Core::RakeTask.new

desc "Generate code coverage"
RSpec::Core::RakeTask.new(:coverage) do |t|
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec']
end

require 'reek/rake/task'
Reek::Rake::Task.new do |t|
  t.fail_on_error = true
  t.verbose = false
  t.source_files = 'lib/**/*.rb'
end

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
kookaburra-0.23.0 Rakefile
kookaburra-0.22.3 Rakefile
kookaburra-0.22.2 Rakefile
kookaburra-0.22.1 Rakefile
kookaburra-0.22.0 Rakefile
kookaburra-0.21.1 Rakefile
kookaburra-0.21.0 Rakefile
kookaburra-0.20.0 Rakefile
kookaburra-0.18.3 Rakefile
kookaburra-0.18.2 Rakefile
kookaburra-0.18.1 Rakefile
kookaburra-0.18.0 Rakefile
kookaburra-0.17.1 Rakefile
kookaburra-0.17.0 Rakefile