gerencianet 0.0.13 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +2 -2
  3. data/CHANGELOG.md +18 -0
  4. data/README.md +4 -4
  5. data/examples/certs/developmentCertificate.pem +0 -0
  6. data/examples/certs/productionCertificate.pem +0 -0
  7. data/examples/credentials.rb +4 -2
  8. data/examples/{cancel_carnet.rb → default/carnet/cancel_carnet.rb} +2 -2
  9. data/examples/{cancel_parcel.rb → default/carnet/cancel_parcel.rb} +2 -2
  10. data/examples/{create_carnet.rb → default/carnet/create_carnet.rb} +3 -3
  11. data/examples/{create_carnet_history.rb → default/carnet/create_carnet_history.rb} +2 -2
  12. data/examples/{detail_carnet.rb → default/carnet/detail_carnet.rb} +2 -2
  13. data/examples/{resend_carnet.rb → default/carnet/resend_carnet.rb} +3 -3
  14. data/examples/{resend_parcel.rb → default/carnet/resend_parcel.rb} +3 -3
  15. data/examples/default/carnet/settle_carnet_parcel.rb +16 -0
  16. data/examples/{update_carnet_metadata.rb → default/carnet/update_carnet_metadata.rb} +2 -2
  17. data/examples/{update_parcel.rb → default/carnet/update_parcel.rb} +2 -2
  18. data/examples/{all_in_one.rb → default/charge/all_in_one.rb} +3 -3
  19. data/examples/{cancel_charge.rb → default/charge/cancel_charge.rb} +2 -2
  20. data/examples/{charge_link.rb → default/charge/charge_link.rb} +2 -2
  21. data/examples/{create_billet_payment.rb → default/charge/create_billet_payment.rb} +4 -4
  22. data/examples/{create_card_payment.rb → default/charge/create_card_payment.rb} +3 -3
  23. data/examples/{create_charge.rb → default/charge/create_charge.rb} +2 -2
  24. data/examples/{create_charge_balance_sheet.rb → default/charge/create_charge_balance_sheet.rb} +2 -2
  25. data/examples/{create_charge_history.rb → default/charge/create_charge_history.rb} +2 -2
  26. data/examples/default/charge/create_charge_onestep.rb +36 -0
  27. data/examples/default/charge/create_charge_onestep_creditcard.rb +45 -0
  28. data/examples/{detail_charge.rb → default/charge/detail_charge.rb} +2 -2
  29. data/examples/{resend_billet.rb → default/charge/resend_billet.rb} +3 -3
  30. data/examples/default/charge/settle_charge.rb +15 -0
  31. data/examples/{update_billet.rb → default/charge/update_billet.rb} +2 -2
  32. data/examples/{update_charge_link.rb → default/charge/update_charge_link.rb} +2 -2
  33. data/examples/{update_charge_metadata.rb → default/charge/update_charge_metadata.rb} +2 -2
  34. data/examples/default/marketplace/create_charge_onestep_billet_marketplace.rb +45 -0
  35. data/examples/default/marketplace/create_charge_onestep_creditcard_marketplace.rb +54 -0
  36. data/examples/{get_notification.rb → default/notification/get_notification.rb} +2 -2
  37. data/examples/{get_installments.rb → default/others/get_installments.rb} +2 -2
  38. data/examples/{cancel_subscription.rb → default/subscriptions/cancel_subscription.rb} +2 -2
  39. data/examples/{create_plan.rb → default/subscriptions/create_plan.rb} +2 -2
  40. data/examples/{create_subscription.rb → default/subscriptions/create_subscription.rb} +2 -2
  41. data/examples/{create_subscription_history.rb → default/subscriptions/create_subscription_history.rb} +2 -2
  42. data/examples/{create_subscription_payment.rb → default/subscriptions/create_subscription_payment.rb} +3 -3
  43. data/examples/{delete_plan.rb → default/subscriptions/delete_plan.rb} +2 -2
  44. data/examples/{detail_subscription.rb → default/subscriptions/detail_subscription.rb} +2 -2
  45. data/examples/{get_plans.rb → default/subscriptions/get_plans.rb} +2 -2
  46. data/examples/{update_plan.rb → default/subscriptions/update_plan.rb} +2 -2
  47. data/examples/{update_subscription_metadata.rb → default/subscriptions/update_subscription_metadata.rb} +2 -2
  48. data/examples/gn/account/pix_detail_balance.rb +16 -0
  49. data/examples/gn/account/pix_detail_settings.rb +17 -0
  50. data/examples/gn/account/pix_update_settings.rb +33 -0
  51. data/examples/gn/key/pix_create_evp.rb +17 -0
  52. data/examples/gn/key/pix_delete_evp.rb +20 -0
  53. data/examples/gn/key/pix_list_evp.rb +16 -0
  54. data/examples/pix/charge/pix_create_charge.rb +35 -0
  55. data/examples/pix/charge/pix_create_immediate_charge.rb +31 -0
  56. data/examples/pix/charge/pix_detail_charge.rb +21 -0
  57. data/examples/pix/charge/pix_list_charges.rb +21 -0
  58. data/examples/pix/charge/pix_update_charge.rb +26 -0
  59. data/examples/pix/location/pix_create_location.rb +20 -0
  60. data/examples/pix/location/pix_detail_location.rb +20 -0
  61. data/examples/pix/location/pix_generate_qrcode.rb +26 -0
  62. data/examples/pix/location/pix_list_location.rb +21 -0
  63. data/examples/pix/location/pix_unset_txid.rb +21 -0
  64. data/examples/pix/pix/pix_detail.rb +20 -0
  65. data/examples/pix/pix/pix_detail_devolution.rb +22 -0
  66. data/examples/pix/pix/pix_devolution.rb +27 -0
  67. data/examples/pix/pix/pix_list_received.rb +21 -0
  68. data/examples/pix/pix/pix_send.rb +27 -0
  69. data/examples/pix/webhooks/pix_config_webhook.rb +28 -0
  70. data/examples/pix/webhooks/pix_delete_webhook.rb +22 -0
  71. data/examples/pix/webhooks/pix_detail_webhook.rb +21 -0
  72. data/examples/pix/webhooks/pix_list_webhook.rb +22 -0
  73. data/gerencianet.gemspec +4 -4
  74. data/lib/gerencianet/constants.rb +263 -137
  75. data/lib/gerencianet/endpoints.rb +73 -20
  76. data/lib/gerencianet/status.rb +0 -0
  77. data/lib/gerencianet/version.rb +1 -1
  78. metadata +114 -82
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c1d5b6e6c952f71ce27afbd32cfb382a37954aa9
4
- data.tar.gz: ee304af5a9aaf607643b89fb74c2c3f1d20ed9ed
2
+ SHA256:
3
+ metadata.gz: e35fad809aa151178de0c4f0e03b92e1e24b0593cbd26be257f1d4439115fb1e
4
+ data.tar.gz: 899551b58ee314b2bd468995376cca3d45d0eabf0f40b384b799b788c13424c9
5
5
  SHA512:
6
- metadata.gz: ff104696febe84c96eaaa89a96bcafb5dab372d1a7a6bd96200bbaff8a8daad71922d817a12592ce7906e7404be92feae9c296da046e6a00014f1a1898703904
7
- data.tar.gz: 201e6171a6d24c9b94ac0dfd02e8b180a5a70f2c99b54ca90522579bec9ab5aecf4d4ded36097efad4b3dd9955db591084447255d495f909a736953f189388f9
6
+ metadata.gz: d3776e14b5a28de96ba56b13e1016ce80b9216a8e3fd8e6dca07b41b5fd87fc1d7d7c65d412d6c41ee17ce39afd013a9147ef540a912f3474d8ba30b9ccb6437
7
+ data.tar.gz: 56a8cdaaa5b66da0632b4c3ea50c794a901162f1b761962c4d528e4289f76f2a90af34efb52384ea2f6bffb966d3acd39d4def58f5e4198cbbe90d6b8f27c260
data/.travis.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.0
4
- before_install: gem install bundler -v 1.10.6
3
+ - 2.6.6
4
+ before_install: gem install bundler -v 1.17.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ # 1.0.2
2
+
3
+ - Updated: dependencies
4
+
5
+ # 1.0.0
6
+
7
+ - Added: API Pix endpoints
8
+
9
+ # 0.0.15
10
+
11
+ - Added: new endpoint (one step)
12
+
13
+ # 0.0.14
14
+
15
+ - Added: new endpoint (settle charge)
16
+ - Added: new endpoint (settle carnet parcel)
17
+
18
+
1
19
  # 0.0.13
2
20
 
3
21
  - Added: new endpoint (create charge balance sheet)
data/README.md CHANGED
@@ -29,7 +29,7 @@ $ gem install gerencianet
29
29
  ```
30
30
  ## Tested with
31
31
  ```
32
- ruby 2.1.0
32
+ ruby 2.6.6
33
33
  ```
34
34
  ## Basic usage
35
35
 
@@ -37,9 +37,9 @@ ruby 2.1.0
37
37
  require "gerencianet"
38
38
 
39
39
  options = {
40
- client_id: "client_id",
41
- client_secret: "client_secret",
42
- sandbox: true
40
+ client_id: CREDENTIALS::CLIENT_ID,
41
+ client_secret: CREDENTIALS::CLIENT_SECRET,
42
+ sandbox: CREDENTIALS::SANDBOX
43
43
  }
44
44
 
45
45
  gerencianet = Gerencianet.new(options)
File without changes
File without changes
@@ -1,5 +1,7 @@
1
1
  # example
2
2
  module CREDENTIALS
3
- CLIENT_ID = ""
4
- CLIENT_SECRET = ""
3
+ CLIENT_ID = "Client_Id"
4
+ CLIENT_SECRET = "Client_Secret"
5
+ PIX_CERT = "../../certs/developmentCertificate.pem"
6
+ SANDBOX = true
5
7
  end
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,11 +1,11 @@
1
1
  require "gerencianet"
2
2
  require "date"
3
- require_relative "./credentials"
3
+ require_relative "../../credentials"
4
4
 
5
5
  options = {
6
6
  client_id: CREDENTIALS::CLIENT_ID,
7
7
  client_secret: CREDENTIALS::CLIENT_SECRET,
8
- sandbox: true
8
+ sandbox: CREDENTIALS::SANDBOX
9
9
  }
10
10
 
11
11
  tomorrow = Date.today + 1
@@ -20,7 +20,7 @@ body = {
20
20
  customer: {
21
21
  name: "Gorbadoc Oldbuck",
22
22
  email: "oldbuck@gerencianet.com.br",
23
- cpf: "04267484171",
23
+ cpf: "94271564656",
24
24
  birth: "1977-01-15",
25
25
  phone_number: "5144916523"
26
26
  },
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -16,4 +16,4 @@ body = {
16
16
  }
17
17
 
18
18
  gerencianet = Gerencianet.new(options)
19
- puts gerencianet.resend_carnet(params: params, body: body)
19
+ puts gerencianet.resend_carnet(params: params, body: body)
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -17,4 +17,4 @@ body = {
17
17
  }
18
18
 
19
19
  gerencianet = Gerencianet.new(options)
20
- puts gerencianet.resend_parcel(params: params, body: body)
20
+ puts gerencianet.resend_parcel(params: params, body: body)
@@ -0,0 +1,16 @@
1
+ require "gerencianet"
2
+ require_relative "../../credentials"
3
+
4
+ options = {
5
+ client_id: CREDENTIALS::CLIENT_ID,
6
+ client_secret: CREDENTIALS::CLIENT_SECRET,
7
+ sandbox: CREDENTIALS::SANDBOX
8
+ }
9
+
10
+ params = {
11
+ id: 2363,
12
+ parcel: 1
13
+ }
14
+
15
+ gerencianet = Gerencianet.new(options)
16
+ puts gerencianet.settle_carnet_parcel(params: params)
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  charge = {
@@ -38,7 +38,7 @@ payment = {
38
38
  customer: {
39
39
  name: "Gorbadoc Oldbuck",
40
40
  email: "oldbuck@gerencianet.com.br",
41
- cpf: "04267484171",
41
+ cpf: "94271564656",
42
42
  birth: "1977-01-15",
43
43
  phone_number: "5144916523"
44
44
  }
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,11 +1,11 @@
1
1
  require "gerencianet"
2
2
  require "date"
3
- require_relative "./credentials"
3
+ require_relative "../../credentials"
4
4
 
5
5
  options = {
6
6
  client_id: CREDENTIALS::CLIENT_ID,
7
7
  client_secret: CREDENTIALS::CLIENT_SECRET,
8
- sandbox: true
8
+ sandbox: CREDENTIALS::SANDBOX
9
9
  }
10
10
 
11
11
  expireAt = Date.today + 3
@@ -1,17 +1,17 @@
1
1
  require "gerencianet"
2
2
  require "date"
3
- require_relative "./credentials"
3
+ require_relative "../../credentials"
4
4
 
5
5
  options = {
6
6
  client_id: CREDENTIALS::CLIENT_ID,
7
7
  client_secret: CREDENTIALS::CLIENT_SECRET,
8
- sandbox: true
8
+ sandbox: CREDENTIALS::SANDBOX
9
9
  }
10
10
 
11
11
  tomorrow = Date.today + 1
12
12
 
13
13
  params = {
14
- id: 2365
14
+ id: 553880
15
15
  }
16
16
 
17
17
  body = {
@@ -21,7 +21,7 @@ body = {
21
21
  customer: {
22
22
  name: "Gorbadoc Oldbuck",
23
23
  email: "oldbuck@gerencianet.com.br",
24
- cpf: "04267484171",
24
+ cpf: "94271564656",
25
25
  birth: "1977-01-15",
26
26
  phone_number: "5144916523"
27
27
  }
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  body = {
@@ -23,7 +23,7 @@ body = {
23
23
  customer: {
24
24
  name: "Gorbadoc Oldbuck",
25
25
  email: "oldbuck@gerencianet.com.br",
26
- cpf: "04267484171",
26
+ cpf: "94271564656",
27
27
  birth: "1977-01-15",
28
28
  phone_number: "5144916523"
29
29
  }
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  body = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -1,10 +1,10 @@
1
1
  require "gerencianet"
2
- require_relative "./credentials"
2
+ require_relative "../../credentials"
3
3
 
4
4
  options = {
5
5
  client_id: CREDENTIALS::CLIENT_ID,
6
6
  client_secret: CREDENTIALS::CLIENT_SECRET,
7
- sandbox: true
7
+ sandbox: CREDENTIALS::SANDBOX
8
8
  }
9
9
 
10
10
  params = {
@@ -0,0 +1,36 @@
1
+ require "gerencianet"
2
+ require_relative "../../credentials"
3
+
4
+ options = {
5
+ client_id: CREDENTIALS::CLIENT_ID,
6
+ client_secret: CREDENTIALS::CLIENT_SECRET,
7
+ sandbox: CREDENTIALS::SANDBOX
8
+ }
9
+
10
+ body = {
11
+ items: [{
12
+ name: "Product 1",
13
+ value: 1000,
14
+ amount: 2
15
+ }],
16
+ shippings: [{
17
+ name: "Default Shipping Cost",
18
+ value: 100
19
+ }],
20
+ payment: {
21
+ banking_billet: {
22
+ expire_at: tomorrow.strftime,
23
+ customer: {
24
+ name: "Gorbadoc Oldbuck",
25
+ email: "oldbuck@gerencianet.com.br",
26
+ cpf: "94271564656",
27
+ birth: "1977-01-15",
28
+ phone_number: "5144916523"
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+ gerencianet = Gerencianet.new(options)
35
+ puts gerencianet.create_charge_onestep(body: body)
36
+
@@ -0,0 +1,45 @@
1
+ require "gerencianet"
2
+ require_relative "../../credentials"
3
+
4
+ options = {
5
+ client_id: CREDENTIALS::CLIENT_ID,
6
+ client_secret: CREDENTIALS::CLIENT_SECRET,
7
+ sandbox: CREDENTIALS::SANDBOX
8
+ }
9
+
10
+ body = {
11
+ items: [{
12
+ name: "Product 1",
13
+ value: 1000,
14
+ amount: 2
15
+ }],
16
+ shippings: [{
17
+ name: "Default Shipping Cost",
18
+ value: 100
19
+ }],
20
+ payment: {
21
+ credit_card: {
22
+ installments: 1,
23
+ payment_token: "6426f3abd8688639c6772963669bbb8e0eb3c319",
24
+ billing_address: {
25
+ street: "Av. JK",
26
+ number: 909,
27
+ neighborhood: "Bauxita",
28
+ zipcode: "35400000",
29
+ city: "Ouro Preto",
30
+ state: "MG"
31
+ },
32
+ customer: {
33
+ name: "Gorbadoc Oldbuck",
34
+ email: "oldbuck@gerencianet.com.br",
35
+ cpf: "94271564656",
36
+ birth: "1977-01-15",
37
+ phone_number: "5144916523"
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ gerencianet = Gerencianet.new(options)
44
+ puts gerencianet.create_charge_onestep(body: body)
45
+