mirror of
https://github.com/github/codeql.git
synced 2026-04-21 15:05:56 +02:00
15 lines
207 B
Ruby
15 lines
207 B
Ruby
class Foo
|
|
include Rails::Generators::Actions
|
|
|
|
def foo
|
|
execute_command(:rake, "test")
|
|
execute_command(:rails, "server")
|
|
|
|
rake("test")
|
|
|
|
rails_command("server")
|
|
|
|
git("status")
|
|
end
|
|
end
|