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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: a8ffb1114431bb76c64cf47da490946cec62329249293a87e11b61f4efaa35bc
4
- data.tar.gz: '08a4b3f161bc09036eb6fc73ddce4ef318a98835838cac194997f66938c37379'
2
+ SHA1:
3
+ metadata.gz: 4dc81e7f106b07b5d468ebd0d5ff210c164b939d
4
+ data.tar.gz: 69cbfce0edcf806087660873ff22ec6fd0da5728
5
5
  SHA512:
6
- metadata.gz: acea12799fc9d3db54d68dcd4aead74bab8ee48e30028e80e475bb8c7c0bf14654ef0208165d6d49f5497dff9ec1f6241c15a372b27e3f2e59c571af644f0c94
7
- data.tar.gz: f4a884fe4f68c24c9218dc63ceaf74153a6715b36fae4d9384189e56df141ee4f2ae8740f27df0c192bbdf35ea658e61169e5fb56b54d4813feac065c7f38c5a
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}/#{WORKERS_PATH}", params)
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 = {})
@@ -1,3 +1,3 @@
1
1
  module PaychexAPI
2
- VERSION = '0.0.20'.freeze unless defined?(PaychexAPI::VERSION)
2
+ VERSION = '0.0.21'.freeze unless defined?(PaychexAPI::VERSION)
3
3
  end
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.20
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: 2018-11-05 00:00:00.000000000 Z
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.7.3
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/fixtures/association_companies.json
296
- - spec/fixtures/auth.json
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/messages_spec.rb
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/client_spec.rb
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