Sha256: 580f57276e33d8259c7de93f123e7d6b0aa1ff401071579a6bf57a4859a2fdf8

Contents?: true

Size: 607 Bytes

Versions: 10

Compression:

Stored size: 607 Bytes

Contents

# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rake'
require 'rdoc/task'
require 'rspec'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end

RSpec::Core::RakeTask.new('spec:progress') do |spec|
  spec.rspec_opts = %w[--format progress]
  spec.pattern = 'spec/**/*_spec.rb'
end

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "uniform_notifier #{UniformNotifier::VERSION}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

task default: :spec

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
uniform_notifier-1.16.0 Rakefile
uniform_notifier-1.15.0 Rakefile
uniform_notifier-1.14.2 Rakefile
uniform_notifier-1.14.1 Rakefile
uniform_notifier-1.14.0 Rakefile
uniform_notifier-1.13.2 Rakefile
uniform_notifier-1.13.1 Rakefile
uniform_notifier-1.13.0 Rakefile
uniform_notifier-1.12.1 Rakefile
uniform_notifier-1.12.0 Rakefile