Assert that ruby-parse is installed
()
| 194 | class Ruby(BaseLanguage): |
| 195 | @staticmethod |
| 196 | def assert_dependencies(): |
| 197 | """Assert that ruby-parse is installed""" |
| 198 | assert is_installed('ruby-parse'), "The 'parser' gem is requred to " \ |
| 199 | "parse ruby files but was not found " \ |
| 200 | "on the path. Install it from gem " \ |
| 201 | "and try again." |
| 202 | |
| 203 | @staticmethod |
| 204 | def get_tree(filename, lang_params): |
nothing calls this directly
no test coverage detected