upwork-api 1.2.0 → 1.2.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa61b519825544e65cb546afed455fe9d4e526fd
|
4
|
+
data.tar.gz: 9ec9c9fb497d978a247504226392ead8aab3b853
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a30c6db061314b4b8036df59544ee9173a986fe1eab5e8bb29a2150719ec5db617ff90c3d924cd758d350246a6c547b7843a867e121ebbc37b98cabd63728bfb
|
7
|
+
data.tar.gz: 59966f809790cb73b6b1fe06574eb46df13cff89272a2d3df88cec26b6fe557acc03831df01a47d28f42c8734e25d2cbc4deeb979caf5cc0cb453d4ab8af0cc2
|
@@ -35,7 +35,7 @@ module Upwork
|
|
35
35
|
# params: (Hash)
|
36
36
|
def get_list(params)
|
37
37
|
$LOG.i "running " + __method__.to_s
|
38
|
-
@client.get '/hr/
|
38
|
+
@client.get '/hr/v4/clients/applications', params
|
39
39
|
end
|
40
40
|
|
41
41
|
# Get specific application
|
@@ -45,11 +45,11 @@ module Upwork
|
|
45
45
|
# params: (Hash)
|
46
46
|
def get_specific(reference, params)
|
47
47
|
$LOG.i "running " + __method__.to_s
|
48
|
-
@client.get '/hr/
|
48
|
+
@client.get '/hr/v4/clients/applications/' + reference, params
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
55
|
-
end
|
55
|
+
end
|
@@ -35,7 +35,7 @@ module Upwork
|
|
35
35
|
# params: (Hash)
|
36
36
|
def get_list(params = {})
|
37
37
|
$LOG.i "running " + __method__.to_s
|
38
|
-
@client.get '/hr/
|
38
|
+
@client.get '/hr/v4/contractors/applications', params
|
39
39
|
end
|
40
40
|
|
41
41
|
# Get specific application
|
@@ -44,11 +44,11 @@ module Upwork
|
|
44
44
|
# reference: (String)
|
45
45
|
def get_specific(reference)
|
46
46
|
$LOG.i "running " + __method__.to_s
|
47
|
-
@client.get '/hr/
|
47
|
+
@client.get '/hr/v4/contractors/applications' + reference
|
48
48
|
end
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
54
|
-
end
|
54
|
+
end
|
data/lib/upwork/api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: upwork-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maksym Novozhylov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth
|