sw-sdk-ruby 0.0.2.2.pre
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 +7 -0
- data/README.md +470 -0
- data/Response.rb +47 -0
- data/lib/AcceptReject/accept_reject.rb +24 -0
- data/lib/AcceptReject/accept_reject_request.rb +58 -0
- data/lib/Authentication/Auth.rb +12 -0
- data/lib/Authentication/auth_request.rb +15 -0
- data/lib/Authentication/auth_response.rb +44 -0
- data/lib/Balance/Balance.rb +12 -0
- data/lib/Balance/balance_request.rb +16 -0
- data/lib/Cancelation/Cancelation.rb +24 -0
- data/lib/Cancelation/cancelation_request.rb +56 -0
- data/lib/Issue/Issue.rb +32 -0
- data/lib/Issue/issue_request.rb +37 -0
- data/lib/Pdf/Pdf.rb +12 -0
- data/lib/Pdf/pdf_request.rb +22 -0
- data/lib/Pdf/pdf_response.rb +22 -0
- data/lib/Pendings/Pendings.rb +12 -0
- data/lib/Pendings/pendings_request.rb +16 -0
- data/lib/Relations/Relations.rb +24 -0
- data/lib/Relations/relations_request.rb +57 -0
- data/lib/Response.rb +46 -0
- data/lib/Response/generic_response.rb +30 -0
- data/lib/Services.rb +60 -0
- data/lib/Stamp/Stamp.rb +21 -0
- data/lib/Stamp/stamp_request.rb +26 -0
- data/lib/StatusCfdi/status_cfdi.rb +7 -0
- data/lib/StatusCfdi/status_cfdi_request.rb +30 -0
- data/lib/StatusCfdi/status_cfdi_response.rb +66 -0
- data/lib/Validation/Validate.rb +20 -0
- data/lib/Validation/validate_request.rb +44 -0
- metadata +76 -0
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sw-sdk-ruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2.2.pre
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Juan Gamez
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-04-12 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Librería para timbrado de CFDI a través de WebService
|
|
14
|
+
email:
|
|
15
|
+
- juan.gamez@sw.com.mx
|
|
16
|
+
- dev@sw.com.mx
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- README.md
|
|
22
|
+
- Response.rb
|
|
23
|
+
- lib/AcceptReject/accept_reject.rb
|
|
24
|
+
- lib/AcceptReject/accept_reject_request.rb
|
|
25
|
+
- lib/Authentication/Auth.rb
|
|
26
|
+
- lib/Authentication/auth_request.rb
|
|
27
|
+
- lib/Authentication/auth_response.rb
|
|
28
|
+
- lib/Balance/Balance.rb
|
|
29
|
+
- lib/Balance/balance_request.rb
|
|
30
|
+
- lib/Cancelation/Cancelation.rb
|
|
31
|
+
- lib/Cancelation/cancelation_request.rb
|
|
32
|
+
- lib/Issue/Issue.rb
|
|
33
|
+
- lib/Issue/issue_request.rb
|
|
34
|
+
- lib/Pdf/Pdf.rb
|
|
35
|
+
- lib/Pdf/pdf_request.rb
|
|
36
|
+
- lib/Pdf/pdf_response.rb
|
|
37
|
+
- lib/Pendings/Pendings.rb
|
|
38
|
+
- lib/Pendings/pendings_request.rb
|
|
39
|
+
- lib/Relations/Relations.rb
|
|
40
|
+
- lib/Relations/relations_request.rb
|
|
41
|
+
- lib/Response.rb
|
|
42
|
+
- lib/Response/generic_response.rb
|
|
43
|
+
- lib/Services.rb
|
|
44
|
+
- lib/Stamp/Stamp.rb
|
|
45
|
+
- lib/Stamp/stamp_request.rb
|
|
46
|
+
- lib/StatusCfdi/status_cfdi.rb
|
|
47
|
+
- lib/StatusCfdi/status_cfdi_request.rb
|
|
48
|
+
- lib/StatusCfdi/status_cfdi_response.rb
|
|
49
|
+
- lib/Validation/Validate.rb
|
|
50
|
+
- lib/Validation/validate_request.rb
|
|
51
|
+
homepage: https://sw.com.mx/
|
|
52
|
+
licenses:
|
|
53
|
+
- GPL-3.0
|
|
54
|
+
metadata:
|
|
55
|
+
source_code_uri: https://github.com/lunasoft/sw-sdk-ruby
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
require_paths:
|
|
59
|
+
- lib
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '2.1'
|
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 1.3.1
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project:
|
|
72
|
+
rubygems_version: 2.7.6
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: sw-sdk-ruby
|
|
76
|
+
test_files: []
|