bank_db 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +3 -0
- data/Gemfile +11 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bank_db.gemspec +25 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/mongoid.yml +12 -0
- data/config/setup.rb +11 -0
- data/lib/bank/models/account.rb +58 -0
- data/lib/bank/models/user.rb +13 -0
- data/lib/bank/version.rb +3 -0
- data/lib/bank.rb +10 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5e2d72560afce391640f6cc4bb0746bdf354104a
|
4
|
+
data.tar.gz: e853b23ca302aed5bbf9afa5c0b556b601985e01
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 43d06e6bb2dd29b7bcdcc8d87ad521b33b0fd627512ca949f41b9a1313c4790cc7212804bf8edf72af2e323c487b94bfc9cfa927a90821172091bd2e11f7075b
|
7
|
+
data.tar.gz: b7b07cea103dbffc312aacc75cb839440beba536c886b2e896da81cc84b4250bf11a69f4dc395069658935573d478d80fcb27fb5968f63802666956e6c51369e
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Rafael Jesus
|
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,41 @@
|
|
1
|
+
# BankDb
|
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/bank_db`. 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 'bank_db'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install bank_db
|
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 spec` 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]/bank_db.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bank_db.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'bank/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "bank_db"
|
8
|
+
spec.version = Bank::VERSION
|
9
|
+
spec.authors = ["Rafael Jesus"]
|
10
|
+
spec.email = ["rafaelljesus86@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Bank db shared in bank api}
|
13
|
+
spec.description = %q{Bank db shared in bank api}
|
14
|
+
spec.homepage = "https://github.com/rafaeljesus/bank_db"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
25
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "bank_db"
|
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
|
data/bin/setup
ADDED
data/config/mongoid.yml
ADDED
data/config/setup.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'bundler/setup'
|
2
|
+
require 'yaml'
|
3
|
+
require 'mongoid'
|
4
|
+
|
5
|
+
ENVIRONMENT = ENV['ENVIRONMENT'] || 'development'
|
6
|
+
|
7
|
+
$LOAD_PATH.unshift File.expand_path '../../lib', __FILE__
|
8
|
+
mongo_file = File.expand_path '../mongoid.yml', __FILE__
|
9
|
+
|
10
|
+
Mongoid.load!(mongo_file, ENVIRONMENT)
|
11
|
+
Mongoid.raise_not_found_error = false
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Bank
|
2
|
+
module Models
|
3
|
+
class Account
|
4
|
+
include Mongoid::Document
|
5
|
+
include Mongoid::Timestamps
|
6
|
+
|
7
|
+
field :name, type: String
|
8
|
+
field :balance, type: Float, default: 0.00
|
9
|
+
|
10
|
+
belongs_to :user, class_name: 'Bank::Models::User'
|
11
|
+
|
12
|
+
validates_presence_of :name, :balance, :user_id
|
13
|
+
|
14
|
+
def self.open(params)
|
15
|
+
puts "Creating a account with #{params}"
|
16
|
+
self.create!(params)
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.deposit(id, amount)
|
20
|
+
puts "Depositing #{amount} on account #{id}"
|
21
|
+
|
22
|
+
if amount <= 0
|
23
|
+
puts 'Deposit failed! Amount must be greater than 0.00'
|
24
|
+
return false
|
25
|
+
end
|
26
|
+
|
27
|
+
account = self.find_by(id: id)
|
28
|
+
account.balance = (account.balance += amount).round(2)
|
29
|
+
account.save!
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.withdraw(id, amount)
|
33
|
+
puts "Withdrawing #{amount} on account #{id}"
|
34
|
+
|
35
|
+
if amount <= 0
|
36
|
+
puts 'Withdraw failed! Amount must be greater than 0.00'
|
37
|
+
return false
|
38
|
+
end
|
39
|
+
|
40
|
+
account = self.find_by(id: id)
|
41
|
+
account.balance = (account.balance -= amount).round(2)
|
42
|
+
account.save!
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.transfer(from, to, amount)
|
46
|
+
puts "Transfering #{amount} from account #{from} to account #{to}"
|
47
|
+
|
48
|
+
if amount <= 0
|
49
|
+
puts 'Transfer failed! Amount must be greater than 0.00'
|
50
|
+
return false
|
51
|
+
end
|
52
|
+
|
53
|
+
self.deposit(to, amount)
|
54
|
+
self.withdraw(from, amount)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
data/lib/bank/version.rb
ADDED
data/lib/bank.rb
ADDED
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bank_db
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rafael Jesus
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Bank db shared in bank api
|
56
|
+
email:
|
57
|
+
- rafaelljesus86@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bank_db.gemspec
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- config/mongoid.yml
|
72
|
+
- config/setup.rb
|
73
|
+
- lib/bank.rb
|
74
|
+
- lib/bank/models/account.rb
|
75
|
+
- lib/bank/models/user.rb
|
76
|
+
- lib/bank/version.rb
|
77
|
+
homepage: https://github.com/rafaeljesus/bank_db
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.5.1
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: Bank db shared in bank api
|
101
|
+
test_files: []
|