Sha256: 993aa7f2d5da45f4988711ca483f7c8114d4383bcd9fae68ecd1be172e6ecadd

Contents?: true

Size: 447 Bytes

Versions: 10

Compression:

Stored size: 447 Bytes

Contents

# frozen_string_literal: true
=begin
require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/*_test.rb"]
end

require "rubocop/rake_task"

RuboCop::RakeTask.new

task default: %i[test rubocop]
=end

require "bundler/gem_tasks"

begin
  require "rspec/core/rake_task"
  RSpec::Core::RakeTask.new(:spec)
  task default: :spec
rescue LoadError
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
simple_calendar-timeslot-0.90.0 Rakefile
simple_calendar-timeslot-0.8.0 Rakefile
simple_calendar-timeslot-0.7.0 Rakefile
simple_calendar-timeslot-0.6.0 Rakefile
simple_calendar-timeslot-0.5.1 Rakefile
simple_calendar-timeslot-0.5.0 Rakefile
simple_calendar-timeslot-0.4.0 Rakefile
simple_calendar-timeslot-0.3.0 Rakefile
simple_calendar-timeslot-0.2.0 Rakefile
simple_calendar-timeslot-0.1.0 Rakefile