LoginSignup
20
21

More than 5 years have passed since last update.

Rake のタスクを消す (プライベートな gem のうっかり rake release を防ぐ)

Posted at

Rake::Task#clear を使う。

require "bundler/gem_tasks"
Rake::Task[:release].clear

実行結果

$ rake -T
rake build    # Build rack-castanet-0.0.4.gem into the pkg directory.
rake install  # Build and install rack-castanet-0.0.4.gem into system gems.
# rake release は消えてる
20
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
21