Sha256: eac8d25f977b55850271346c0a60c43f4dd7f1aaf092a43e35230813925e3703

Contents?: true

Size: 799 Bytes

Versions: 8

Compression:

Stored size: 799 Bytes

Contents

# frozen_string_literal: true

Bundler.require :test, :development

RuboCop::RakeTask.new

RSpec::Core::RakeTask.new(:spec) do
  ENV['coverage'] = 'true'
end

Jeweler::Tasks.new do |gem|
  gem.name = 'page_magic'
  gem.homepage = 'https://github.com/ladtech/page_magic'
  gem.license = 'ruby'
  gem.summary = 'Framework for modeling and interacting with webpages'
  gem.description = 'Framework for modeling and interacting with webpages which wraps capybara'
  gem.email = 'info@lvl-up.uk'
  gem.authors = ['Leon Davis']
  gem.required_ruby_version = '>= 2.1'
end

Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new do |t|
  t.libs << 'spec'
  t.pattern = 'spec/**/*_test.rb'
  t.warning = true
  t.verbose = true
end

task default: [:spec, :test, 'rubocop:auto_correct']

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
page_magic-2.0.6 Rakefile
page_magic-2.0.5 Rakefile
page_magic-2.0.4 Rakefile
page_magic-2.0.3 Rakefile
page_magic-2.0.2 Rakefile
page_magic-2.0.1 Rakefile
page_magic-2.0.0 Rakefile
page_magic-2.0.0.alpha1 Rakefile