Class: GitTrend::Project

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name: "", description: "", lang: "", all_star_count: 0, fork_count: 0, star_count: 0) ⇒ Project

Returns a new instance of Project.



5
6
7
8
9
10
11
12
# File 'lib/git_trend/project.rb', line 5

def initialize(name: "", description: "", lang: "", all_star_count: 0, fork_count: 0, star_count: 0)
  self.name = name
  self.description = description
  self.lang = lang
  self.all_star_count = all_star_count
  self.fork_count = fork_count
  self.star_count = star_count
end

Instance Attribute Details

#all_star_countObject

Returns the value of attribute all_star_count.



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

def all_star_count
  @all_star_count
end

#descriptionObject

Returns the value of attribute description.



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

def description
  @description
end

#fork_countObject

Returns the value of attribute fork_count.



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

def fork_count
  @fork_count
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_hObject



14
15
16
17
18
19
20
21
22
23
# File 'lib/git_trend/project.rb', line 14

def to_h
  {
    name: name,
    description: description,
    lang: lang,
    all_star_count: all_star_count,
    fork_count: fork_count,
    star_count: star_count,
  }
end