Class: Github::Trending::Project
- Inherits:
-
Object
- Object
- Github::Trending::Project
- Defined in:
- lib/github_trending/project.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#lang ⇒ Object
Returns the value of attribute lang.
-
#name ⇒ Object
Returns the value of attribute name.
-
#star_count ⇒ Object
Returns the value of attribute star_count.
Instance Method Summary collapse
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
4 5 6 |
# File 'lib/github_trending/project.rb', line 4 def description @description end |
#lang ⇒ Object
Returns the value of attribute lang.
4 5 6 |
# File 'lib/github_trending/project.rb', line 4 def lang @lang end |
#name ⇒ Object
Returns the value of attribute name.
4 5 6 |
# File 'lib/github_trending/project.rb', line 4 def name @name end |
#star_count ⇒ Object
Returns the value of attribute star_count.
4 5 6 |
# File 'lib/github_trending/project.rb', line 4 def star_count @star_count end |
Instance Method Details
#to_a ⇒ Object
6 7 8 |
# File 'lib/github_trending/project.rb', line 6 def to_a [@name, @lang, @star_count.to_s] end |