lib/bosh/stemcell/agent.rb in bosh-stemcell-1.1798.0 vs lib/bosh/stemcell/agent.rb in bosh-stemcell-1.1836.0

- old
+ new

@@ -11,12 +11,26 @@ end end class Go + def name + 'go' + end + + def ==(other) + name == other.name + end end class Ruby + def name + 'ruby' + end + + def ==(other) + name == other.name + end end end end