Sha256: 35ae5c9745beb20572aad1cedb405eba52bff4a3c4b490094d97cadf3969bff5
Contents?: true
Size: 690 Bytes
Versions: 1
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" require 'rspec/core/rake_task' # # temp fix for NoMethodError: undefined method `last_comment' # # remove when fixed in Rake 11.x and higher # module TempFixForRakeLastComment # def last_comment # last_description # end # end # Rake::Application.send :include, TempFixForRakeLastComment # ### end of tempfix RSpec::Core::RakeTask.new(:spec) require "rubocop/rake_task" RuboCop::RakeTask.new require "rake/extensiontask" task build: :compile Rake::ExtensionTask.new("smarter_csv") do |ext| ext.ext_dir = "ext/smarter_csv" end # task default: %i[clobber compile spec rubocop] task default: %i[clobber compile spec]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
smarter_csv-1.9.0 | Rakefile |