nubank_client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a9fb0708ca956025101e20906f8e699d527c2dd9f8415d5277fee104729c78e2
4
+ data.tar.gz: 9d24483598681b44ba03a67808fafc95ddba84acf16d556c11981bde85f397a8
5
+ SHA512:
6
+ metadata.gz: fae9b5d6e7b9ff1ec5ab03206da0be827f02c59d69dbedea5208ede57d866ea47758810f989da1eb87166d9bd7227248b975435a410750c8c4d2afcf21aec326
7
+ data.tar.gz: 6a6a25122e52cb4ed07ee072302f9df5643fac23ab5d8a8ca6e81f6b46db7bfc53b138cbe9c1317e9ee77ed4371e9ab3a2af4d001efe87c3ff63c0d618b76495
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.0
7
+ before_install: gem install bundler -v 1.17.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in nubank.gemspec
6
+ gemspec
@@ -0,0 +1,74 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nubank_client (0.1.0)
5
+ dry-struct (~> 0.6)
6
+ http (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.6.0)
12
+ public_suffix (>= 2.0.2, < 4.0)
13
+ coderay (1.1.2)
14
+ concurrent-ruby (1.1.4)
15
+ domain_name (0.5.20180417)
16
+ unf (>= 0.0.5, < 1.0.0)
17
+ dry-configurable (0.7.0)
18
+ concurrent-ruby (~> 1.0)
19
+ dry-container (0.6.0)
20
+ concurrent-ruby (~> 1.0)
21
+ dry-configurable (~> 0.1, >= 0.1.3)
22
+ dry-core (0.4.7)
23
+ concurrent-ruby (~> 1.0)
24
+ dry-equalizer (0.2.1)
25
+ dry-inflector (0.1.2)
26
+ dry-logic (0.4.2)
27
+ dry-container (~> 0.2, >= 0.2.6)
28
+ dry-core (~> 0.2)
29
+ dry-equalizer (~> 0.2)
30
+ dry-struct (0.6.0)
31
+ dry-core (~> 0.4, >= 0.4.3)
32
+ dry-equalizer (~> 0.2)
33
+ dry-types (~> 0.13)
34
+ ice_nine (~> 0.11)
35
+ dry-types (0.13.4)
36
+ concurrent-ruby (~> 1.0)
37
+ dry-container (~> 0.3)
38
+ dry-core (~> 0.4, >= 0.4.4)
39
+ dry-equalizer (~> 0.2)
40
+ dry-inflector (~> 0.1, >= 0.1.2)
41
+ dry-logic (~> 0.4, >= 0.4.2)
42
+ http (4.0.3)
43
+ addressable (~> 2.3)
44
+ http-cookie (~> 1.0)
45
+ http-form_data (~> 2.0)
46
+ http_parser.rb (~> 0.6.0)
47
+ http-cookie (1.0.3)
48
+ domain_name (~> 0.5)
49
+ http-form_data (2.1.1)
50
+ http_parser.rb (0.6.0)
51
+ ice_nine (0.11.2)
52
+ method_source (0.9.2)
53
+ minitest (5.11.3)
54
+ pry (0.12.2)
55
+ coderay (~> 1.1.0)
56
+ method_source (~> 0.9.0)
57
+ public_suffix (3.0.3)
58
+ rake (10.5.0)
59
+ unf (0.1.4)
60
+ unf_ext
61
+ unf_ext (0.0.7.5)
62
+
63
+ PLATFORMS
64
+ ruby
65
+
66
+ DEPENDENCIES
67
+ bundler (~> 1.17)
68
+ minitest (~> 5.0)
69
+ nubank_client!
70
+ pry
71
+ rake (~> 10.0)
72
+
73
+ BUNDLED WITH
74
+ 1.17.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Lucas Mansur
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # Nubank
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/nubank`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'nubank'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install nubank
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nubank.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "nubank"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,10 @@
1
+ require 'nubank/version'
2
+ require 'nubank/client'
3
+
4
+ module Nubank
5
+ class Error < StandardError; end
6
+
7
+ def self.client(identification, password)
8
+ Client.new(identification, password)
9
+ end
10
+ end
@@ -0,0 +1,59 @@
1
+ require 'http'
2
+ require_relative 'endpoint'
3
+ require_relative 'request'
4
+ require_relative 'resources/account'
5
+ require_relative 'resources/events'
6
+
7
+ module Nubank
8
+ class Client
9
+ CLIENT_SECRET = 'yQPeLzoHuJzlMMSAjC-LgNUJdUecx8XO'.freeze
10
+ CLIENT_ID = 'other.conta'.freeze
11
+ GRANT_TYPE = 'password'.freeze
12
+
13
+ def initialize(identification, password)
14
+ @identification = identification
15
+ @password = password
16
+ @access_token = nil
17
+ @endpoint = Endpoint.new
18
+ end
19
+
20
+ def login
21
+ @login ||= begin
22
+ request = Request.new(:post, endpoint.login, access_token, json: login_params)
23
+ request.run.tap do |response|
24
+ body = response.parsed_body
25
+ endpoint.populate(body['_links'])
26
+ @access_token = body['access_token']
27
+ end
28
+ end
29
+ end
30
+
31
+ def account
32
+ request = Request.new(:get, endpoint.account, access_token)
33
+ request.run.tap { |response| response.resource = Resources::Account }
34
+ end
35
+
36
+ def events
37
+ request = Request.new(:get, endpoint.events, access_token)
38
+ request.run.tap { |response| response.resource = Resources::Events }
39
+ end
40
+
41
+ private
42
+
43
+ attr_reader :identification, :password, :access_token, :endpoint
44
+
45
+ def login_params
46
+ {
47
+ login: identification,
48
+ password: password,
49
+ client_id: CLIENT_ID,
50
+ client_secret: CLIENT_SECRET,
51
+ grant_type: GRANT_TYPE
52
+ }
53
+ end
54
+
55
+ def authorization
56
+ @authorization ||= "Bearer #{access_token}"
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,43 @@
1
+ require 'http'
2
+
3
+ module Nubank
4
+ class Endpoint
5
+ DISCOVERY = 'https://prod-s0-webapp-proxy.nubank.com.br/api/discovery'.freeze
6
+
7
+ def initialize
8
+ @reference = {}
9
+ end
10
+
11
+ def top_level_endpoints
12
+ @top_level_endpoints ||= HTTP.get(DISCOVERY).parse
13
+ end
14
+
15
+ def populate(links)
16
+ reference.merge!(links)
17
+ end
18
+
19
+ def login
20
+ @login ||= top_level_endpoints['login']
21
+ end
22
+
23
+ def account
24
+ @account ||= endpoint_for(:account)
25
+ end
26
+
27
+ def events
28
+ @events ||= endpoint_for(:events)
29
+ end
30
+
31
+ def bills
32
+ @bills ||= endpoint_for(:bills_summary)
33
+ end
34
+
35
+ private
36
+
37
+ attr_reader :reference
38
+
39
+ def endpoint_for(resource)
40
+ reference[resource.to_s]['href']
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,30 @@
1
+ require 'http'
2
+ require_relative 'response'
3
+
4
+ module Nubank
5
+ class Request
6
+ attr_reader :response
7
+
8
+ def initialize(method, endpoint, access_token = nil, options = {})
9
+ @method = method
10
+ @endpoint = endpoint
11
+ @access_token = access_token
12
+ @options = options
13
+ end
14
+
15
+ def run
16
+ response = HTTP.auth(authorization)
17
+ .send(method, endpoint, options)
18
+
19
+ @response = Response.new(response)
20
+ end
21
+
22
+ private
23
+
24
+ attr_reader :method, :endpoint, :access_token, :options
25
+
26
+ def authorization
27
+ @authorization = access_token ? "Bearer #{access_token}" : ''
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,41 @@
1
+ require_relative 'base'
2
+
3
+ module Nubank
4
+ module Resources
5
+ class Account < Base
6
+ attribute :id, Types::Coercible::String
7
+ attribute :due_day, Types::Coercible::Integer
8
+ attribute :product_id, Types::Coercible::String
9
+ attribute :available_balance, Types::Params::Decimal
10
+ attribute :temporary_limit_amount, Types::Params::Decimal
11
+ attribute :limit_range_min, Types::Params::Decimal
12
+ attribute :future_balance, Types::Params::Decimal
13
+ attribute :current_interest_rate, Types::Params::Decimal
14
+ attribute :precise_credit_limit, Types::Params::Decimal
15
+ attribute :over_limit_amount, Types::Params::Decimal
16
+ attribute :next_due_date, Types::Params::Date
17
+ attribute :interest_rate, Types::Params::Decimal
18
+ attribute :status, Types::Coercible::String
19
+ attribute :card_active_since, Types::Params::DateTime
20
+ attribute :net_available, Types::Params::Decimal
21
+ attribute :limit_range_max, Types::Params::Decimal
22
+ attribute :next_close_date, Types::Params::Date
23
+ attribute :current_balance, Types::Params::Decimal
24
+ attribute :created_at, Types::Params::DateTime
25
+ attribute :request_id, Types::Coercible::String
26
+ attribute :customer_id, Types::Coercible::String
27
+ attribute :credit_limit, Types::Params::Decimal
28
+ attribute :balances, Types::Hash.schema(
29
+ 'future' => Types::Params::Decimal,
30
+ 'open' => Types::Params::Decimal,
31
+ 'due' => Types::Params::Decimal,
32
+ 'prepaid' => Types::Params::Decimal,
33
+ 'available' => Types::Params::Decimal
34
+ )
35
+
36
+ def self.new(args)
37
+ super(args['account'])
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,13 @@
1
+ require 'dry-struct'
2
+
3
+ module Nubank
4
+ module Resources
5
+ class Base < Dry::Struct
6
+ transform_keys(&:to_sym)
7
+
8
+ module Types
9
+ include Dry::Types.module
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,56 @@
1
+ require_relative 'base'
2
+
3
+ module Nubank
4
+ module Resources
5
+ class Event < Base
6
+ transform_types { |type| type.meta(omittable: true) }
7
+
8
+ attribute :id, Types::Coercible::String
9
+ attribute :description, Types::Coercible::String
10
+ attribute :message, Types::Coercible::String
11
+ attribute :category, Types::Coercible::String
12
+ attribute :amount, Types::Params::Decimal
13
+ attribute :time, Types::Params::DateTime
14
+ attribute :title, Types::Coercible::String
15
+ attribute :details, Types::Hash.with_type_transform { |type| type.meta(omittable: true) }.schema(
16
+ fx: Types::Hash.with_type_transform { |type| type.meta(omittable: true) }.schema(
17
+ currency_origin: Types::Coercible::String,
18
+ amount_origin: Types::Params::Decimal,
19
+ amount_usd: Types::Params::Decimal,
20
+ precise_amount_origin: Types::Params::Decimal,
21
+ precise_amount_usd: Types::Params::Decimal,
22
+ exchange_rate: Types::Params::Decimal
23
+ ),
24
+ lat: Types::Params::Float,
25
+ lon: Types::Params::Float,
26
+ subcategory: Types::Coercible::String
27
+ )
28
+
29
+ def self.new(args)
30
+ symbolized_args = args.deep_symbolize_keys
31
+ super(symbolized_args)
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ class Hash
38
+ def deep_symbolize_keys
39
+ deep_transform_keys(self, &:to_sym)
40
+ end
41
+
42
+ private
43
+
44
+ def deep_transform_keys(object, &block)
45
+ case object
46
+ when Hash
47
+ object.each_with_object({}) do |(key, value), result|
48
+ result[yield(key)] = deep_transform_keys(value, &block)
49
+ end
50
+ when Array
51
+ object.map { |e| deep_transform_keys(e, &block) }
52
+ else
53
+ object
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,11 @@
1
+ require_relative 'event'
2
+
3
+ module Nubank
4
+ module Resources
5
+ class Events < Array
6
+ def initialize(events)
7
+ events['events'].map { |event| self << Event.new(event) }
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,26 @@
1
+ module Nubank
2
+ class Response
3
+ attr_writer :resource
4
+ attr_reader :response
5
+
6
+ def initialize(response)
7
+ @response = response
8
+ end
9
+
10
+ def resource
11
+ @resource.new(parsed_body)
12
+ end
13
+
14
+ def parsed_body
15
+ @parsed_body ||= @response.parse
16
+ end
17
+
18
+ def body
19
+ @response.body
20
+ end
21
+
22
+ def code
23
+ @response.code
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,3 @@
1
+ module Nubank
2
+ VERSION = '0.1.0'.freeze
3
+ end
@@ -0,0 +1,33 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "nubank/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "nubank_client"
8
+ spec.version = Nubank::VERSION
9
+ spec.authors = ["Lucas Mansur"]
10
+ spec.email = ["lucas.mansur2@gmail.com"]
11
+
12
+ spec.summary = %q{Unofficial client for the Nubank API}
13
+ spec.description = %q{This is an unofficial client for the undocumented Nubank API. Consider this to be very unstable. You may have your access temporarily blocked if used too much. Use at your own risk.}
14
+ spec.homepage = "https://github.com/lmansur/nubank-ruby"
15
+ spec.license = "MIT"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_dependency "http", "~> 4.0"
27
+ spec.add_dependency "dry-struct", "~> 0.6"
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.17"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ spec.add_development_dependency "minitest", "~> 5.0"
32
+ spec.add_development_dependency "pry"
33
+ end
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nubank_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Lucas Mansur
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-01-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: http
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: dry-struct
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.6'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.17'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.17'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '5.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '5.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: This is an unofficial client for the undocumented Nubank API. Consider
98
+ this to be very unstable. You may have your access temporarily blocked if used too
99
+ much. Use at your own risk.
100
+ email:
101
+ - lucas.mansur2@gmail.com
102
+ executables: []
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - ".gitignore"
107
+ - ".travis.yml"
108
+ - Gemfile
109
+ - Gemfile.lock
110
+ - LICENSE.txt
111
+ - README.md
112
+ - Rakefile
113
+ - bin/console
114
+ - bin/setup
115
+ - lib/nubank.rb
116
+ - lib/nubank/client.rb
117
+ - lib/nubank/endpoint.rb
118
+ - lib/nubank/request.rb
119
+ - lib/nubank/resources/account.rb
120
+ - lib/nubank/resources/base.rb
121
+ - lib/nubank/resources/event.rb
122
+ - lib/nubank/resources/events.rb
123
+ - lib/nubank/response.rb
124
+ - lib/nubank/version.rb
125
+ - nubank.gemspec
126
+ homepage: https://github.com/lmansur/nubank-ruby
127
+ licenses:
128
+ - MIT
129
+ metadata: {}
130
+ post_install_message:
131
+ rdoc_options: []
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubygems_version: 3.0.1
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: Unofficial client for the Nubank API
149
+ test_files: []