Class: GitTrend::Project

Inherits:
Object
  • Object
show all
Defined in:
lib/git_trend/project.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



3
4
5
# File 'lib/git_trend/project.rb', line 3

def description
  @description
end

#langObject

Returns the value of attribute lang.



3
4
5
# File 'lib/git_trend/project.rb', line 3

def lang
  @lang
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/git_trend/project.rb', line 3

def name
  @name
end

#star_countObject

Returns the value of attribute star_count.



3
4
5
# File 'lib/git_trend/project.rb', line 3

def star_count
  @star_count
end

Instance Method Details

#to_aObject



5
6
7
# File 'lib/git_trend/project.rb', line 5

def to_a
  [@name, @lang, @star_count.to_s]
end