Method: U3d::UnityModule#depends_on?
- Defined in:
- lib/u3d/unity_module.rb
#depends_on?(other) ⇒ Boolean
rubocop:enable Metrics/ParameterLists
56 57 58 59 60 61 |
# File 'lib/u3d/unity_module.rb', line 56 def depends_on?(other) return true if other.id == 'unity' return false unless depends_on other.id == depends_on || other.name == depends_on end |