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