Sha256: 981f03dc67595d449928c793e8ef326661d72fd48b2848f052fc6b2b844d64f3
Contents?: true
Size: 496 Bytes
Versions: 1
Compression:
Stored size: 496 Bytes
Contents
class MarvelCharactersCliGemEthel::Characters attr_accessor :super_name, :real_name, :character_type, :number_of_powers, :list_of_powers @@character_array = [] def initialize(super_name=nil, real_name=nil, character_type=nil, number_of_powers=nil, list_of_powers) @super_name = super_name @real_name = real_name @character_type = character_type @number_of_powers = number_of_powers @list_of_powers = list_of_powers @@character_array << self end end #end Class
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
marvel_characters_cli_gem_ethel-0.1.0 | lib/marvel_characters_cli_gem_ethel/characters.rb |