Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
引数なしで「rake」を実行すると、rspec と cucumber が自動的にトリガーされます。これが発生したときに jasmine:ci タスクも実行したいと思います。どうすればこれを達成できますか?
Rakefile では、カスタム タスクを定義できます。
task :my_task do #define custom task puts 'my own task" end task :default => 'my_task' #set task "my_task" as default task #this task will execute on 'rake' running