diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-06-14 01:33:44 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-06-14 12:14:20 +0900 |
commit | f9deff32a354d1f14653337d027c1e841551ff59 () | |
tree | 46fac0000970efdd08994714918ed7496e25a3a0 /gems/lib | |
parent | c5c15a565b9b88745fe08f2ff78c2e0e5b401498 (diff) |
Show prerequisites for compile task
Notes: Merged: https://.com/ruby/ruby/pull/7941
-rw-r--r-- | gems/lib/rake/extensiontask.rb | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,8 +1,9 @@ module Rake class ExtensionTask < TaskLib def initialize(...) - task :compile do puts "Dummy `compile` task defined in #{__FILE__}" end end end |