paychex_api 0.0.20 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/paychex_api/client/companies.rb +1 -1
- data/lib/paychex_api/version.rb +1 -1
- metadata +17 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4dc81e7f106b07b5d468ebd0d5ff210c164b939d
|
4
|
+
data.tar.gz: 69cbfce0edcf806087660873ff22ec6fd0da5728
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84d2c7a6a9039d6e7fc8f911b79930dd0ac54fbbfa219810a5102720e856f7670f717ff42766f9ee088a64723b92728f0bf8c0df35788c43309914ab184f47ce
|
7
|
+
data.tar.gz: 35b44abfcf14b428279f9413f500d3029eb4cbd229a4cf60872071dbe2ea002cfab372406b43405904ba2b01676336b218c97d8acf9454cf4af75de786a8ff85
|
@@ -19,7 +19,7 @@ module PaychexAPI
|
|
19
19
|
|
20
20
|
def get_company_workers(company_id, params = {})
|
21
21
|
connection.headers[:accept] = "application/json;profile='http://api.paychex.com/profiles/workers_users/nonpii/v1'"
|
22
|
-
get("#{API_PATH}#{COMPANIES_PATH}/#{company_id}
|
22
|
+
get("#{API_PATH}#{COMPANIES_PATH}/#{company_id}#{WORKERS_PATH}", params)
|
23
23
|
end
|
24
24
|
|
25
25
|
def get_company_by_display_id(display_id, params = {})
|
data/lib/paychex_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paychex_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Shaffer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -287,29 +287,29 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
287
287
|
version: '0'
|
288
288
|
requirements: []
|
289
289
|
rubyforge_project:
|
290
|
-
rubygems_version: 2.
|
290
|
+
rubygems_version: 2.5.2.1
|
291
291
|
signing_key:
|
292
292
|
specification_version: 4
|
293
293
|
summary: Paychex API
|
294
294
|
test_files:
|
295
|
-
- spec/
|
296
|
-
- spec/
|
297
|
-
- spec/fixtures/communications.json
|
298
|
-
- spec/fixtures/companies.json
|
299
|
-
- spec/fixtures/companies_associations.json
|
300
|
-
- spec/fixtures/messages.json
|
301
|
-
- spec/fixtures/organizations.json
|
302
|
-
- spec/fixtures/users.json
|
303
|
-
- spec/fixtures/workers.json
|
295
|
+
- spec/paychex_api/paychex_api_spec.rb
|
296
|
+
- spec/paychex_api/client_spec.rb
|
304
297
|
- spec/paychex_api/api_array_spec.rb
|
305
|
-
- spec/paychex_api/client/associations_spec.rb
|
306
298
|
- spec/paychex_api/client/companies_spec.rb
|
307
|
-
- spec/paychex_api/client/
|
308
|
-
- spec/paychex_api/client/notifications_spec.rb
|
299
|
+
- spec/paychex_api/client/associations_spec.rb
|
309
300
|
- spec/paychex_api/client/purchases_spec.rb
|
310
301
|
- spec/paychex_api/client/users_spec.rb
|
302
|
+
- spec/paychex_api/client/messages_spec.rb
|
311
303
|
- spec/paychex_api/client/workers_spec.rb
|
312
|
-
- spec/paychex_api/
|
313
|
-
- spec/paychex_api/paychex_api_spec.rb
|
304
|
+
- spec/paychex_api/client/notifications_spec.rb
|
314
305
|
- spec/support/fake_paychex.rb
|
306
|
+
- spec/fixtures/messages.json
|
307
|
+
- spec/fixtures/organizations.json
|
308
|
+
- spec/fixtures/users.json
|
309
|
+
- spec/fixtures/companies.json
|
310
|
+
- spec/fixtures/workers.json
|
311
|
+
- spec/fixtures/auth.json
|
312
|
+
- spec/fixtures/communications.json
|
313
|
+
- spec/fixtures/association_companies.json
|
314
|
+
- spec/fixtures/companies_associations.json
|
315
315
|
- spec/test_helper.rb
|