spendee-rb 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d731985e96c2c4900f978ca3d0dc9bc2d2462cde6930fa7c9151ca6585b4b359
4
+ data.tar.gz: a67eeea117b90cb377bd76af2e591d3ef1518fac8424b89b01bad90bc824811a
5
+ SHA512:
6
+ metadata.gz: b908843096d1866695dd7a63ef31608ce97f06f4432beb6c1dcb5c22b7376ff3f4539657a2332be13418e36d0e929051a34d4eb7a7c867a9bf2204d1682a966e
7
+ data.tar.gz: ca10fa0448ad5e4d3bf1c75cd4333dcdf6159a470e8dd75527c0237e30f5a49c258723d929e5ccf9385cc41cd05d54dcd2a46dafa26e2551ad1abec77a52f9cb
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /*.log
11
+ /.env
12
+ /*.DS_Store
13
+ /.idea
14
+ /*.swp
15
+ /*.swo
16
+ /tags
17
+ /.tags
18
+ rspec_results
19
+ .ruby-version
20
+ .ruby-gemset
21
+ /.rvmrc
22
+ /.rspec
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.3.4
7
+ before_install: gem install bundler -v 1.17.1
data/.yardopts ADDED
@@ -0,0 +1,9 @@
1
+ --protected
2
+ --no-private
3
+ --embed-mixin ClassMethods
4
+ --tag yard.signature:"YARD Tag Signature"
5
+ --type-name-tag yard.tag:"YARD Tag"
6
+ --type-name-tag yard.directive:"YARD Directive"
7
+ --hide-tag yard.tag
8
+ --hide-tag yard.directive
9
+ --hide-tag yard.signature
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at taras.shpachenko@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
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 spendee-rb.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Taras Shpachenko
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.
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Spendee API ruby client
2
+
3
+ ```ruby
4
+ class Spendee
5
+ def initialize
6
+ #TODO -> Add README.md content
7
+ end
8
+ end
9
+ ```
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'spendee-rb'
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__)
data/bin/setup ADDED
@@ -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
data/lib/spendee-rb.rb ADDED
@@ -0,0 +1,33 @@
1
+ require 'api_struct'
2
+ require 'spendee/initializers/api_struct'
3
+
4
+ require 'spendee/version'
5
+
6
+ module Spendee
7
+ autoload :Version, 'spendee/version'
8
+
9
+ module Entities
10
+ autoload :User, 'spendee/entities/user'
11
+ autoload :Wallet, 'spendee/entities/wallet'
12
+ autoload :Transaction, 'spendee/entities/transaction'
13
+ autoload :Category, 'spendee/entities/category'
14
+ end
15
+
16
+ module Clients
17
+ autoload :BaseClient, 'spendee/clients/base_client'
18
+
19
+ autoload :UserLogin, 'spendee/clients/user_login'
20
+ autoload :UserGetProfile, 'spendee/clients/user_get_profile'
21
+ autoload :WalletGetAll, 'spendee/clients/wallet_get_all'
22
+ autoload :WalletGetTransactions, 'spendee/clients/wallet_get_transactions'
23
+ autoload :WalletCreateTransaction, 'spendee/clients/wallet_create_transaction'
24
+ autoload :GetAllUserCategories, 'spendee/clients/get_all_user_categories'
25
+ end
26
+
27
+ autoload :UserLogin, 'spendee/user_login'
28
+ autoload :UserProfile, 'spendee/user_profile'
29
+ autoload :Wallet, 'spendee/wallet'
30
+ autoload :Transaction, 'spendee/transaction'
31
+ autoload :CreateTransaction, 'spendee/create_transaction'
32
+ autoload :Category, 'spendee/category'
33
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ class Category < ApiStruct::Entity
3
+ client_service Spendee::Clients::GetAllUserCategories
4
+
5
+ has_entities :result, as: Spendee::Entities::Category
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spendee
4
+ module Clients
5
+ class BaseClient < ApiStruct::Client
6
+ API_UUID = 'API-UUID'
7
+
8
+ def default_headers(api_uuid)
9
+ { API_UUID => api_uuid }
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,11 @@
1
+ module Spendee
2
+ module Clients
3
+ class GetAllUserCategories < BaseClient
4
+ spendee_api 'get-all-user-categories'
5
+
6
+ def index(api_uuid)
7
+ get(headers: default_headers(api_uuid))
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Spendee
2
+ module Clients
3
+ class UserGetProfile < BaseClient
4
+ spendee_api 'user-get-profile'
5
+
6
+ def show(api_uuid)
7
+ post(headers: default_headers(api_uuid))
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,17 @@
1
+ module Spendee
2
+ module Clients
3
+ class UserLogin < BaseClient
4
+ spendee_api 'user-login'
5
+
6
+ def create(email:, password:)
7
+ post(
8
+ body: {
9
+ email: email,
10
+ password: password,
11
+ device_uuid: ''
12
+ }.to_json
13
+ )
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,22 @@
1
+ module Spendee
2
+ module Clients
3
+ class WalletCreateTransaction < BaseClient
4
+ spendee_api 'wallet-create-transaction'
5
+
6
+ def create(api_uuid, amount:, start_date:, wallet_id:, note:, category_id:, timezone:, offset:)
7
+ post(
8
+ body: {
9
+ amount: amount,
10
+ start_date: start_date,
11
+ wallet_id: wallet_id,
12
+ note: note,
13
+ category_id: category_id,
14
+ timezone: timezone,
15
+ offset: offset
16
+ }.to_json,
17
+ headers: default_headers(api_uuid)
18
+ )
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,11 @@
1
+ module Spendee
2
+ module Clients
3
+ class WalletGetAll < BaseClient
4
+ spendee_api 'wallet-get-all'
5
+
6
+ def index(api_uuid)
7
+ post(headers: default_headers(api_uuid))
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Spendee
2
+ module Clients
3
+ class WalletGetTransactions < BaseClient
4
+ spendee_api 'wallet-get-transactions'
5
+
6
+ def index(api_uuid)
7
+ post(headers: default_headers(api_uuid))
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ module Spendee
2
+ class CreateTransaction < ApiStruct::Entity
3
+ client_service Clients::WalletCreateTransaction
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ module Entities
3
+ class Category < ApiStruct::Entity
4
+ attr_entity :id, :name, :color, :status, :wallet_id, :user_id, :type
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ module Entities
3
+ class Transaction < ApiStruct::Entity
4
+ attr_entity :id, :uuid, :wallet_id, :user_id, :amount, :category_id, :created, :note, :type, :timezone
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ module Entities
3
+ class User < ApiStruct::Entity
4
+ attr_entity :id, :uuid, :email, :firstname, :lastname, :nickname, :api_uuid
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ module Entities
3
+ class Wallet < ApiStruct::Entity
4
+ attr_entity :id, :uuid, :name, :balance, :currency, :status
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ ApiStruct::Settings.configure do |config|
2
+ config.endpoints = {
3
+ spendee_api: {
4
+ root: 'https://api.spendee.com/v1.8'
5
+ }
6
+ }
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ class Transaction < ApiStruct::Entity
3
+ client_service Spendee::Clients::WalletGetTransactions
4
+
5
+ has_entities :result, as: Spendee::Entities::Transaction
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ class UserLogin < ApiStruct::Entity
3
+ client_service Spendee::Clients::UserLogin
4
+
5
+ has_entity :result, as: Spendee::Entities::User
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ class UserProfile < ApiStruct::Entity
3
+ client_service Spendee::Clients::UserGetProfile
4
+
5
+ has_entity :result, as: Spendee::Entities::User
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spendee
4
+ VERSION = '0.0.1'
5
+ end
@@ -0,0 +1,7 @@
1
+ module Spendee
2
+ class Wallet < ApiStruct::Entity
3
+ client_service Spendee::Clients::WalletGetAll
4
+
5
+ has_entities :result, as: Spendee::Entities::Wallet
6
+ end
7
+ end
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'spendee/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'spendee-rb'
8
+ spec.version = Spendee::VERSION
9
+ spec.authors = ['Taras Shpachenko']
10
+
11
+ spec.summary = 'Spendee API ruby client.'
12
+ spec.description = 'Ruby client that wraps Spendee API.'
13
+
14
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
15
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ end
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_dependency 'api_struct', '~> 1.0', '>= 1.0.3'
22
+
23
+ spec.add_development_dependency 'bundler', '~> 1.17'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'rspec', '~> 3.7.0'
26
+
27
+
28
+ spec.add_development_dependency 'vcr', '~> 4.0.0'
29
+ spec.add_development_dependency 'simplecov', '~> 0.16.0'
30
+ spec.add_development_dependency 'simplecov-rcov', '~> 0.2.3'
31
+ spec.add_development_dependency 'webmock', '~> 3.4.0'
32
+ spec.add_development_dependency 'dotenv', '~> 2.5.0'
33
+ spec.add_development_dependency 'awesome_print', '~> 1.7.0'
34
+ spec.add_development_dependency 'pry'
35
+ end
36
+
metadata ADDED
@@ -0,0 +1,234 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spendee-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Taras Shpachenko
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-07-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: api_struct
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.3
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.3
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.17'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.17'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '10.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '10.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 3.7.0
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 3.7.0
75
+ - !ruby/object:Gem::Dependency
76
+ name: vcr
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: 4.0.0
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: 4.0.0
89
+ - !ruby/object:Gem::Dependency
90
+ name: simplecov
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: 0.16.0
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 0.16.0
103
+ - !ruby/object:Gem::Dependency
104
+ name: simplecov-rcov
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.2.3
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 0.2.3
117
+ - !ruby/object:Gem::Dependency
118
+ name: webmock
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: 3.4.0
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: 3.4.0
131
+ - !ruby/object:Gem::Dependency
132
+ name: dotenv
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: 2.5.0
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: 2.5.0
145
+ - !ruby/object:Gem::Dependency
146
+ name: awesome_print
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: 1.7.0
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: 1.7.0
159
+ - !ruby/object:Gem::Dependency
160
+ name: pry
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ description: Ruby client that wraps Spendee API.
174
+ email:
175
+ executables: []
176
+ extensions: []
177
+ extra_rdoc_files: []
178
+ files:
179
+ - ".gitignore"
180
+ - ".rspec"
181
+ - ".travis.yml"
182
+ - ".yardopts"
183
+ - CODE_OF_CONDUCT.md
184
+ - Gemfile
185
+ - LICENSE.txt
186
+ - README.md
187
+ - Rakefile
188
+ - bin/console
189
+ - bin/setup
190
+ - lib/spendee-rb.rb
191
+ - lib/spendee/category.rb
192
+ - lib/spendee/clients/base_client.rb
193
+ - lib/spendee/clients/get_all_user_categories.rb
194
+ - lib/spendee/clients/user_get_profile.rb
195
+ - lib/spendee/clients/user_login.rb
196
+ - lib/spendee/clients/wallet_create_transaction.rb
197
+ - lib/spendee/clients/wallet_get_all.rb
198
+ - lib/spendee/clients/wallet_get_transactions.rb
199
+ - lib/spendee/create_transaction.rb
200
+ - lib/spendee/entities/category.rb
201
+ - lib/spendee/entities/transaction.rb
202
+ - lib/spendee/entities/user.rb
203
+ - lib/spendee/entities/wallet.rb
204
+ - lib/spendee/initializers/api_struct.rb
205
+ - lib/spendee/transaction.rb
206
+ - lib/spendee/user_login.rb
207
+ - lib/spendee/user_profile.rb
208
+ - lib/spendee/version.rb
209
+ - lib/spendee/wallet.rb
210
+ - spendee-rb.gemspec
211
+ homepage:
212
+ licenses: []
213
+ metadata: {}
214
+ post_install_message:
215
+ rdoc_options: []
216
+ require_paths:
217
+ - lib
218
+ required_ruby_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ required_rubygems_version: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ requirements: []
229
+ rubyforge_project:
230
+ rubygems_version: 2.7.3
231
+ signing_key:
232
+ specification_version: 4
233
+ summary: Spendee API ruby client.
234
+ test_files: []