developwithpassion/expansions

View on GitHub
lib/expansions/shell.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Expansions
  class Shell
    def run(cmd)
      return `#{cmd}`
    end
  end
end