How can I run a ruby class from rake file?
问题 I want to run a ruby class from a sample.rake file. Consider myruby.rb is a ruby file. I want to run this from sample.rake like ruby myruby.rb 回答1: Adding to what @tobias has to say here you go with an example script sample content of myruby.rb puts "hello world" Create file called Rakefile task :default => [:test] task :test do ruby "my_file.rb" end Now if you invoke rake it should file up hello world text in console. Update It would make more sense if you wrap your call in a function call