bancos_brasileiros 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 753d883296d6bc4b12ef397219f4349b43376cfdb80dd121a7cb639a0880c2c1
4
+ data.tar.gz: df8b4170b7359151a318574507a6d03ba8be3204316665a7a50f9d3810d3fea9
5
+ SHA512:
6
+ metadata.gz: 58719dd199e01bc14e85756f2891921ad64da8beb84be7b2f6d4311b9e03c9e0fc6389ebcd57f0a89cb2ada606959f615aeb08f823075a6b0055d4dd74a874f0
7
+ data.tar.gz: 7bf37187aab4faac20f8712204b73d3906ab81ab96092b133e0ef542e910751f84de694dc2ab1e8a60804c67a008aac2da91e4cfdc5e15a2ff38a6ef87551bc3
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## 0.1.0
2
+
3
+ - First release
data/MIT-LICENSE.md ADDED
@@ -0,0 +1,5 @@
1
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2
+
3
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # BancosBrasileiros
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ 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/bancos_brasileiros`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing to Bancos Brasileiros
30
+
31
+ Fork, fix, then send a pull request. Bug reports and pull requests are welcome on GitHub at **https://github.com/eltonsantos/bancos_brasileiros**.
32
+
33
+ ## License
34
+
35
+ This gem is available as open-source under the terms of The MIT License (MIT).
36
+
37
+ Copyright (c) 2024 **Elton Santos**. See **MIT-LICENSE** for further details.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/bancos_brasileiros/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "bancos_brasileiros"
7
+ spec.version = BancosBrasileiros::VERSION
8
+ spec.authors = ["Elton Santos"]
9
+ spec.email = ["eltonaxl@hotmail.com"]
10
+ spec.summary = "🇧🇷 🏦 📋 Brazilian commercial banks list"
11
+ spec.description = "🇧🇷 🏦 📋 Brazilian commercial banks list"
12
+ spec.homepage = "https://github.com/eltonsantos/bancos_brasileiros"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+ spec.license = "MIT"
15
+
16
+ spec.metadata = {
17
+ "homepage_uri" => spec.homepage,
18
+ "source_code_uri" => "https://github.com/eltonsantos/bancos_brasileiros",
19
+ "changelog_uri" => "https://github.com/eltonsantos/bancos_brasileiros/blob/master/CHANGELOG.md",
20
+ }
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(__dir__) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (File.expand_path(f) == __FILE__) ||
27
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
28
+ end
29
+ end
30
+ spec.bindir = "exe"
31
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ["lib"]
33
+
34
+ # Uncomment to register a new dependency of your gem
35
+ # spec.add_dependency "example-gem", "~> 1.0"
36
+
37
+ # For more information and examples about making a new gem, check out our
38
+ # guide at: https://bundler.io/guides/creating_gem.html
39
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BancosBrasileiros
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "bancos_brasileiros/version"
4
+
5
+ module BancosBrasileiros
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,4 @@
1
+ module BancosBrasileiros
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bancos_brasileiros
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Elton Santos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-07-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: "\U0001F1E7\U0001F1F7 \U0001F3E6 \U0001F4CB Brazilian commercial banks
14
+ list"
15
+ email:
16
+ - eltonaxl@hotmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - MIT-LICENSE.md
23
+ - README.md
24
+ - Rakefile
25
+ - bancos_brasileiros.gemspec
26
+ - lib/bancos_brasileiros.rb
27
+ - lib/bancos_brasileiros/version.rb
28
+ - sig/bancos_brasileiros.rbs
29
+ homepage: https://github.com/eltonsantos/bancos_brasileiros
30
+ licenses:
31
+ - MIT
32
+ metadata:
33
+ homepage_uri: https://github.com/eltonsantos/bancos_brasileiros
34
+ source_code_uri: https://github.com/eltonsantos/bancos_brasileiros
35
+ changelog_uri: https://github.com/eltonsantos/bancos_brasileiros/blob/master/CHANGELOG.md
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 2.6.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.5.3
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: "\U0001F1E7\U0001F1F7 \U0001F3E6 \U0001F4CB Brazilian commercial banks list"
55
+ test_files: []