Sha256: 9fc328cc39d62d8760106276729aa9f7c51927c3977a68a2d3e5ed818d6a7627

Contents?: true

Size: 1.52 KB

Versions: 16

Compression:

Stored size: 1.52 KB

Contents

################################################################################
#
#      Author: Zachary Patten <zachary AT jovelabs DOT com>
#   Copyright: Copyright (c) Zachary Patten
#     License: Apache License, Version 2.0
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
################################################################################

require 'rake/clean'

require 'bundler/gem_tasks'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

require 'cucumber/rake/task'
desc 'Run features'
Cucumber::Rake::Task.new(:features) do |t|
  opts = "features --format pretty -x"
  opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
  t.cucumber_opts =  opts
  t.fork = false
end

require 'coveralls/rake/task'
Coveralls::RakeTask.new

require 'ztk/rake/docs'

################################################################################

task :coveralls => [:spec, 'coveralls:push']
task :default => [:spec]
task :test => [:spec]

################################################################################

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
testlab-1.22.4 Rakefile
testlab-1.22.3 Rakefile
testlab-1.22.2 Rakefile
testlab-1.22.1 Rakefile
testlab-1.22.0 Rakefile
testlab-1.21.1 Rakefile
testlab-1.21.0 Rakefile
testlab-1.20.6 Rakefile
testlab-1.20.5 Rakefile
testlab-1.20.4 Rakefile
testlab-1.20.3 Rakefile
testlab-1.20.2 Rakefile
testlab-1.20.1 Rakefile
testlab-1.20.0 Rakefile
testlab-1.19.0 Rakefile
testlab-1.18.1 Rakefile