Sha256: becee7d66f940b6e597f0b338308505c584363ed254c6b9f963603466d75faea

Contents?: true

Size: 194 Bytes

Versions: 5

Compression:

Stored size: 194 Bytes

Contents

class Participant
	attr_accessor :name

	def initialize(name)
		self.name = name
	end

	def self.from_ascript_participant(ascript_participant)
		self.new(ascript_participant.name.get())
	end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
imsg-0.0.9 lib/model/participant.rb
imsg-0.0.8 lib/model/participant.rb
imsg-0.0.7 lib/model/participant.rb
imsg-0.0.6 lib/model/participant.rb
imsg-0.0.5 lib/model/participant.rb