Sha256: c5eeb7ec01e5035b36d60307d153add1393230a2299febb96219a98953b3edb4

Contents?: true

Size: 1.32 KB

Versions: 27

Compression:

Stored size: 1.32 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 = "devteam@renewfund.com"
  gem.authors = ["Renewable Funding, LLC"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
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

task :default => :test

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

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
kookaburra-0.14.4 Rakefile
kookaburra-0.14.3 Rakefile
kookaburra-0.14.2 Rakefile
kookaburra-0.14.1 Rakefile
kookaburra-0.14.0 Rakefile
kookaburra-0.13.0 Rakefile
kookaburra-0.12.0 Rakefile
kookaburra-0.11.0 Rakefile
kookaburra-0.10.0 Rakefile
kookaburra-0.9.1 Rakefile
kookaburra-0.9.0 Rakefile
kookaburra-0.8.0 Rakefile
kookaburra-0.7.2 Rakefile
kookaburra-0.7.1 Rakefile
kookaburra-0.7.0 Rakefile
kookaburra-0.6.0 Rakefile
kookaburra-0.5.1 Rakefile
kookaburra-0.5.0 Rakefile
kookaburra-0.4.0 Rakefile
kookaburra-0.3.1 Rakefile