rvindi 0.0.3

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.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/gem-push.yml +45 -0
  3. data/.gitignore +9 -0
  4. data/.rubocop.yml +13 -0
  5. data/.tool-versions +1 -0
  6. data/CHANGELOG.md +5 -0
  7. data/CODE_OF_CONDUCT.md +84 -0
  8. data/Gemfile +21 -0
  9. data/Gemfile.lock +134 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +205 -0
  12. data/Rakefile +8 -0
  13. data/bin/console +22 -0
  14. data/bin/setup +8 -0
  15. data/lib/rvindi.rb +3 -0
  16. data/lib/vindi/core_extensions/her_save_only_changed_attrs.rb +73 -0
  17. data/lib/vindi/core_extensions/her_with_query_filter.rb +69 -0
  18. data/lib/vindi/middleware/rate_limit_validation.rb +23 -0
  19. data/lib/vindi/middleware/response_parser.rb +50 -0
  20. data/lib/vindi/models/address.rb +9 -0
  21. data/lib/vindi/models/bill.rb +26 -0
  22. data/lib/vindi/models/bill_item.rb +18 -0
  23. data/lib/vindi/models/charge.rb +9 -0
  24. data/lib/vindi/models/customer.rb +29 -0
  25. data/lib/vindi/models/discount.rb +8 -0
  26. data/lib/vindi/models/issue.rb +8 -0
  27. data/lib/vindi/models/model.rb +77 -0
  28. data/lib/vindi/models/notification.rb +8 -0
  29. data/lib/vindi/models/payment_method.rb +8 -0
  30. data/lib/vindi/models/payment_profile.rb +9 -0
  31. data/lib/vindi/models/period.rb +8 -0
  32. data/lib/vindi/models/plan.rb +90 -0
  33. data/lib/vindi/models/plan_item.rb +11 -0
  34. data/lib/vindi/models/pricing_schema.rb +8 -0
  35. data/lib/vindi/models/product.rb +25 -0
  36. data/lib/vindi/models/product_item.rb +8 -0
  37. data/lib/vindi/models/subscription.rb +48 -0
  38. data/lib/vindi/models/transaction.rb +8 -0
  39. data/lib/vindi/rate_limit.rb +18 -0
  40. data/lib/vindi/version.rb +5 -0
  41. data/lib/vindi.rb +80 -0
  42. data/rvindi.gemspec +30 -0
  43. metadata +141 -0
data/rvindi.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/vindi/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rvindi"
7
+ spec.version = Vindi::VERSION
8
+ spec.authors = ["Wedson Lima"]
9
+ spec.email = ["wedson.sousa.lima@gmail.com"]
10
+
11
+ spec.summary = "Vindi API - Simple wrapper for the Vindi API"
12
+ spec.description = "Vindi API - Simple wrapper for the Vindi API"
13
+ spec.homepage = "https://github.com/wedsonlima/rvindi"
14
+ spec.license = "MIT"
15
+
16
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
17
+
18
+ # Specify which files should be added to the gem when it is released.
19
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
21
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
22
+ end
23
+
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_dependency "dry-configurable", "~> 0.7.0"
27
+ spec.add_dependency "faraday", "~> 1.4"
28
+ spec.add_dependency "faraday_middleware", "~> 1.0"
29
+ spec.add_dependency "her", "~> 1.1"
30
+ end
metadata ADDED
@@ -0,0 +1,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rvindi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Wedson Lima
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-12-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dry-configurable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.7.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.7.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: faraday_middleware
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: her
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ description: Vindi API - Simple wrapper for the Vindi API
70
+ email:
71
+ - wedson.sousa.lima@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".github/workflows/gem-push.yml"
77
+ - ".gitignore"
78
+ - ".rubocop.yml"
79
+ - ".tool-versions"
80
+ - CHANGELOG.md
81
+ - CODE_OF_CONDUCT.md
82
+ - Gemfile
83
+ - Gemfile.lock
84
+ - LICENSE.txt
85
+ - README.md
86
+ - Rakefile
87
+ - bin/console
88
+ - bin/setup
89
+ - lib/rvindi.rb
90
+ - lib/vindi.rb
91
+ - lib/vindi/core_extensions/her_save_only_changed_attrs.rb
92
+ - lib/vindi/core_extensions/her_with_query_filter.rb
93
+ - lib/vindi/middleware/rate_limit_validation.rb
94
+ - lib/vindi/middleware/response_parser.rb
95
+ - lib/vindi/models/address.rb
96
+ - lib/vindi/models/bill.rb
97
+ - lib/vindi/models/bill_item.rb
98
+ - lib/vindi/models/charge.rb
99
+ - lib/vindi/models/customer.rb
100
+ - lib/vindi/models/discount.rb
101
+ - lib/vindi/models/issue.rb
102
+ - lib/vindi/models/model.rb
103
+ - lib/vindi/models/notification.rb
104
+ - lib/vindi/models/payment_method.rb
105
+ - lib/vindi/models/payment_profile.rb
106
+ - lib/vindi/models/period.rb
107
+ - lib/vindi/models/plan.rb
108
+ - lib/vindi/models/plan_item.rb
109
+ - lib/vindi/models/pricing_schema.rb
110
+ - lib/vindi/models/product.rb
111
+ - lib/vindi/models/product_item.rb
112
+ - lib/vindi/models/subscription.rb
113
+ - lib/vindi/models/transaction.rb
114
+ - lib/vindi/rate_limit.rb
115
+ - lib/vindi/version.rb
116
+ - rvindi.gemspec
117
+ homepage: https://github.com/wedsonlima/rvindi
118
+ licenses:
119
+ - MIT
120
+ metadata: {}
121
+ post_install_message:
122
+ rdoc_options: []
123
+ require_paths:
124
+ - lib
125
+ required_ruby_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: 2.5.0
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ requirements: []
136
+ rubyforge_project:
137
+ rubygems_version: 2.7.6.3
138
+ signing_key:
139
+ specification_version: 4
140
+ summary: Vindi API - Simple wrapper for the Vindi API
141
+ test_files: []