10 lines
133 B
Ruby
10 lines
133 B
Ruby
|
require 'twitter/entity'
|
||
|
|
||
|
module Twitter
|
||
|
class Entity
|
||
|
class Symbol < Twitter::Entity
|
||
|
attr_reader :text
|
||
|
end
|
||
|
end
|
||
|
end
|