gitget 0.3 → 0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59ab3309c17520f0fabbb153fdb977f9d1565c98
4
- data.tar.gz: e31acf546428da5867c252196e40305795557aec
3
+ metadata.gz: 659033a5d0afe7c5ef1a1ec54a81ef9254f19d53
4
+ data.tar.gz: 870286afb7a127b89d8a5ddd1a91d88e4d117481
5
5
  SHA512:
6
- metadata.gz: 934fe5da28be29a33ee0264bf9c538aedb8c55874ddce12caa811dc1022a2f0cc6dc05b1d13480e823ced0ce60d21ab18bbc91564159c7db67f2624ff0877573
7
- data.tar.gz: 6d4d61c17b467c8b44cf63c748b2adeb21428efc5d3e1e1e7fc3414f729fe109d95a31c4e81974682ce27e8c75808534572f797079332931c9b1bd17b99cad6b
6
+ metadata.gz: 5defacedc62d24600a00bc6997752950d20530c065c480b423a9f18139c94d02bba9fc1a64714454e13550996edc096aed999b3c8ab192e254ceb3faf11d2a4c
7
+ data.tar.gz: cce783514abb480229516ec2596021181ba450a24cebc70ec916abc86332bbe38016c26a72e953a35d012bc64040c8f344bcaea1ef06e0cf085abda8ee335e49
@@ -6,7 +6,7 @@ module Github
6
6
  attr_reader :id, :name, :full_name, :is_private, :is_fork, :created_at,
7
7
  :updated_at, :pushed_at, :size, :stargazers_count,
8
8
  :watchers_count, :has_issues, :has_downloads, :forks_count,
9
- :open_issues_count, :forks, :open_issues, :watchers
9
+ :open_issues_count, :forks, :open_issues, :watchers, :language
10
10
 
11
11
  def initialize(data: nil)
12
12
  load_data(data)
@@ -35,6 +35,7 @@ module Github
35
35
  @watchers_count = repo_data['watchers_count']
36
36
  @forks_count = repo_data['forks_count']
37
37
  @open_issues_count = repo_data['open_issues_count']
38
+ @language = repo_data['language']
38
39
  end
39
40
 
40
41
  def self.find(owner:, repo:)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Github
4
- VERSION = '0.3'
4
+ VERSION = '0.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitget
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: '0.4'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Renaud Jollet
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-12-04 00:00:00.000000000 Z
13
+ date: 2016-12-16 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: http
@@ -201,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
201
201
  version: '0'
202
202
  requirements: []
203
203
  rubyforge_project:
204
- rubygems_version: 2.4.8
204
+ rubygems_version: 2.5.1
205
205
  signing_key:
206
206
  specification_version: 4
207
207
  summary: Gets public information about Github developers