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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/semaphore_client/model/project.rb +2 -1
- data/lib/semaphore_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fc730cec6d7c1e2ee06aa222720937c0b2e96ae
|
4
|
+
data.tar.gz: fc01090a8898399c97a1fae2dec37d522d2d2861
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6067dd9a488dfebe30d33bf186290c2c3dec4a937620870301501e0052777223acd5c9529849b31f552e802f267a6a535ee79c9ac8378bcc330700ba8738f73
|
7
|
+
data.tar.gz: 39898e00f62010405546f8449513c38878ee96f0708c778b8a9519d0caf28dcaf80ac1842373a2732e6ded77aee5b7790bd8d1618a96c8c5f06aa37537bc7523
|
data/Gemfile.lock
CHANGED
@@ -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)
|
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.
|
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-
|
11
|
+
date: 2017-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|