Class: Dependencies
- Inherits:
-
Object
- Object
- Dependencies
- Defined in:
- ext/dependencies.rb
Instance Method Summary collapse
-
#initialize(cmake, options) ⇒ Dependencies
constructor
A new instance of Dependencies.
- #to_s ⇒ Object
Constructor Details
#initialize(cmake, options) ⇒ Dependencies
Returns a new instance of Dependencies.
4 5 6 7 8 9 10 |
# File 'ext/dependencies.rb', line 4 def initialize(cmake, ) @cmake = cmake = generate_dot @libs = parse_dot end |
Instance Method Details
#to_s ⇒ Object
12 13 14 |
# File 'ext/dependencies.rb', line 12 def to_s @libs.join(" ") end |