Sha256: eda83ac4e219637ce6f0b0a7fc04c140aa149d67df5f9ad6d28b7564de054eb8

Contents?: true

Size: 411 Bytes

Versions: 18

Compression:

Stored size: 411 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

require "rubocop/rake_task"

RuboCop::RakeTask.new

task default: %i[spec rubocop]

desc 'Generate a migration timestamp'
task :timestamp do
  puts 'The below migration timestamp should be placed in the "lib/dsu/migration/version.rb" file.'
  puts Time.now.strftime('%Y%m%d%H%M%S')
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
dsu-3.0.0 Rakefile
dsu-3.0.0.beta.3 Rakefile
dsu-3.0.0.beta.2 Rakefile
dsu-3.0.0.beta.1 Rakefile
dsu-3.0.0.beta.0 Rakefile
dsu-3.0.0.alpha.12 Rakefile
dsu-3.0.0.alpha.11 Rakefile
dsu-3.0.0.alpha.10 Rakefile
dsu-3.0.0.alpha.9 Rakefile
dsu-3.0.0.alpha.8 Rakefile
dsu-3.0.0.alpha.7 Rakefile
dsu-3.0.0.alpha.6 Rakefile
dsu-3.0.0.alpha.5 Rakefile
dsu-3.0.0.alpha.4 Rakefile
dsu-3.0.0.alpha.3 Rakefile
dsu-3.0.0.alpha.2 Rakefile
dsu-3.0.0.alpha.1 Rakefile
dsu-3.0.0.alpha.0 Rakefile