bureaucrat_ruby 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +71 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bureaucrat_ruby.gemspec +31 -0
- data/lib/bureaucrat_ruby.rb +15 -0
- data/lib/bureaucrat_ruby/version.rb +3 -0
- data/lib/libbureaucrat.dylib +0 -0
- data/lib/libbureaucrat.so +0 -0
- metadata +142 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 34777e5174a507cc72d457c66322f8f2b89c3c19
|
4
|
+
data.tar.gz: 2d1c7e5f442c5e5e6f82fdbd4c11a24bb952050e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1fb31f5b71e0cd2e486216e0e0679d1b976cc752e020ab22345b072144c61548549eb361bf6c39c275f7868027efd18818a7e67cbc3b554834817c2c34b85163
|
7
|
+
data.tar.gz: 5af6edb99e29ee38c3651d59d9bf0a87603710c03592789ab06599f02a6c4195b69ba52676852e5f3cb875f6a5af554ecce9c8d228aebb929228006b8f6edd1e
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 nubis
|
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,71 @@
|
|
1
|
+
# BureaucratRuby
|
2
|
+
[![Build
|
3
|
+
Status](https://travis-ci.org/bitex-la/bureaucrat_ruby.svg?branch=master)](https://travis-ci.org/bitex-la/bureaucrat_ruby)
|
4
|
+
|
5
|
+
Validate Argentine CBUs and CUIT codes.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'bureaucrat_ruby'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install bureaucrat_ruby
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
This gem is a binary distribution with ruby wrappers for
|
26
|
+
[bureaucrat](https://github.com/bitex-la/bureaucrat), see the main
|
27
|
+
bureaucrat library for more variants.
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
|
31
|
+
cbu = BureaucratRuby::Cbu.create(id: "0170035040000002373188")
|
32
|
+
cbu.errors.should be_empty
|
33
|
+
|
34
|
+
cbu.attributes.should == {
|
35
|
+
"id"=>"0170035040000002373188",
|
36
|
+
"type"=>"cbus",
|
37
|
+
"meta"=>nil,
|
38
|
+
"bank"=>"017",
|
39
|
+
"branch"=>"0035",
|
40
|
+
"bank_name"=>"BBVA Banco Francés S.A.",
|
41
|
+
"account"=>"40000002373188"
|
42
|
+
}
|
43
|
+
|
44
|
+
bad_cbu = BureaucratRuby::Cbu.create(id: "foo")
|
45
|
+
bad_cbu.errors[:base].should == ['InvalidCbuFormat']
|
46
|
+
|
47
|
+
cuit = BureaucratRuby::Cuit.create(id: "20319274228")
|
48
|
+
cuit.errors.should be_empty
|
49
|
+
|
50
|
+
cuit.attributes.should == {
|
51
|
+
"id" => "20319274228",
|
52
|
+
"type"=>"cuits",
|
53
|
+
"meta"=>nil,
|
54
|
+
"kind"=>"20",
|
55
|
+
"person_id"=>"31927422",
|
56
|
+
}
|
57
|
+
|
58
|
+
bad_cuit = BureaucratRuby::Cuit.create(id: "foo")
|
59
|
+
bad_cuit.errors[:base].should == ['InvalidCuitFormat']
|
60
|
+
|
61
|
+
```
|
62
|
+
|
63
|
+
## Development & Contributions
|
64
|
+
|
65
|
+
See the main Bureaucrat library. We'll likely accept any pull request or issue
|
66
|
+
asking for more validations to be added. Not limited to Argentina.
|
67
|
+
|
68
|
+
## License
|
69
|
+
|
70
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
71
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "bureaucrat_ruby"
|
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
@@ -0,0 +1,31 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'bureaucrat_ruby/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "bureaucrat_ruby"
|
8
|
+
spec.version = BureaucratRuby::VERSION
|
9
|
+
spec.authors = ["nubis"]
|
10
|
+
spec.email = ["yo@nubis.im"]
|
11
|
+
|
12
|
+
spec.summary = %q{Validate argentine CBU and CUIT codes in ruby
|
13
|
+
See https://github.com/bitex-la/bureaucrat
|
14
|
+
}
|
15
|
+
spec.homepage = "https://github.com/bitex-la/bureaucrat_ruby"
|
16
|
+
spec.license = "MIT"
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
spec.add_dependency "json_api_client", "~> 1.5"
|
25
|
+
spec.add_dependency "json_ffi_client", "~> 0.1"
|
26
|
+
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
29
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
30
|
+
spec.add_development_dependency "byebug", "~> 9.0"
|
31
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require "bureaucrat_ruby/version"
|
2
|
+
require 'json'
|
3
|
+
require 'json_api_client'
|
4
|
+
require 'json_ffi_client'
|
5
|
+
|
6
|
+
module BureaucratRuby
|
7
|
+
class Base < JsonApiClient::Resource
|
8
|
+
self.connection_class = JsonFfiClient::Connection
|
9
|
+
.configured_for(:bureaucrat, __dir__)
|
10
|
+
end
|
11
|
+
|
12
|
+
class Cbu < Base; end
|
13
|
+
|
14
|
+
class Cuit < Base; end
|
15
|
+
end
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bureaucrat_ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- nubis
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-05-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: json_api_client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: json_ffi_client
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.1'
|
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.13'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.13'
|
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: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: byebug
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '9.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '9.0'
|
97
|
+
description:
|
98
|
+
email:
|
99
|
+
- yo@nubis.im
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".rspec"
|
106
|
+
- ".travis.yml"
|
107
|
+
- Gemfile
|
108
|
+
- LICENSE.txt
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- bin/console
|
112
|
+
- bin/setup
|
113
|
+
- bureaucrat_ruby.gemspec
|
114
|
+
- lib/bureaucrat_ruby.rb
|
115
|
+
- lib/bureaucrat_ruby/version.rb
|
116
|
+
- lib/libbureaucrat.dylib
|
117
|
+
- lib/libbureaucrat.so
|
118
|
+
homepage: https://github.com/bitex-la/bureaucrat_ruby
|
119
|
+
licenses:
|
120
|
+
- MIT
|
121
|
+
metadata: {}
|
122
|
+
post_install_message:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
125
|
+
- lib
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
requirements: []
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 2.5.1
|
139
|
+
signing_key:
|
140
|
+
specification_version: 4
|
141
|
+
summary: Validate argentine CBU and CUIT codes in ruby See https://github.com/bitex-la/bureaucrat
|
142
|
+
test_files: []
|