gogotanaka/Rubype

View on GitHub
lib/rubype/contract.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'ordinalize'
require 'rubype/rubype'

class Rubype::Contract
  attr_accessor :arg_types, :rtn_type

  def info
    { @arg_types => @rtn_type }
  end
end