semaphore_client 3.0.3 → 3.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95c6627483d9c1995050a25ef8bd892c65670aba
4
- data.tar.gz: fa740804648fb36fd19155194044c16e790a9a08
3
+ metadata.gz: 1fc730cec6d7c1e2ee06aa222720937c0b2e96ae
4
+ data.tar.gz: fc01090a8898399c97a1fae2dec37d522d2d2861
5
5
  SHA512:
6
- metadata.gz: 2977004997693cbabcc39c4b2051aecc12f5bbf31a0a33c71161efbc9c3589a94dc24c28196913808c47ddc948845d4c40f374f486ba6fcd333e63066c805693
7
- data.tar.gz: e5d006395cabf3d18461783812e44827c8e1a11ab80f0f98b35c16ae6917cd3b8a3afa6cc1e6fd639e051ebf3334359f478c9e030480ce8ceaf561005e75261f
6
+ metadata.gz: c6067dd9a488dfebe30d33bf186290c2c3dec4a937620870301501e0052777223acd5c9529849b31f552e802f267a6a535ee79c9ac8378bcc330700ba8738f73
7
+ data.tar.gz: 39898e00f62010405546f8449513c38878ee96f0708c778b8a9519d0caf28dcaf80ac1842373a2732e6ded77aee5b7790bd8d1618a96c8c5f06aa37537bc7523
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- semaphore_client (3.0.3)
4
+ semaphore_client (3.0.4)
5
5
  faraday
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  class SemaphoreClient
2
2
  module Model
3
3
  class Project
4
- attr_reader :id, :name, :users_url, :secrets_url, :updated_at, :created_at
4
+ attr_reader :id, :name, :html_url, :users_url, :secrets_url, :updated_at, :created_at
5
5
 
6
6
  def self.load(attributes)
7
7
  new.load(attributes)
@@ -16,6 +16,7 @@ class SemaphoreClient
16
16
 
17
17
  @id = attributes[:id] if attributes.key?(:id)
18
18
  @name = attributes[:name] if attributes.key?(:name)
19
+ @html_url = attributes[:html_url] if attributes.key?(:html_url)
19
20
  @users_url = attributes[:users_url] if attributes.key?(:users_url)
20
21
  @secrets_url = attributes[:secrets_url] if attributes.key?(:secrets_url)
21
22
  @updated_at = attributes[:updated_at] if attributes.key?(:updated_at)
@@ -1,3 +1,3 @@
1
1
  class SemaphoreClient
2
- VERSION = "3.0.3"
2
+ VERSION = "3.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semaphore_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 3.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jovan Ivanović
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-20 00:00:00.000000000 Z
11
+ date: 2017-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday