market_hub 0.1.0
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 +7 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +35 -0
- data/Rakefile +13 -0
- data/lib/market_hub/version.rb +5 -0
- data/lib/market_hub.rb +8 -0
- data/sig/market_hub.rbs +4 -0
- metadata +53 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 78c96a116ae064684ee7989e91586dc125b67c7c346700fbbd3cc15866b6354f
|
4
|
+
data.tar.gz: b4576bad02a170175dcdd6e0afa85ea765dc65f5457cbe63f9a28262a4d4e96f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b1970099a7b8f06787197ac85a1571d0b5c85a1fd775fb0048b9749e2503267f05118c1e43d8607e9bbcba1bca049ba3f3fd121a3f3729a40eb0feee17c0717e
|
7
|
+
data.tar.gz: b82df795904eb9efd3be56abb3a5fb39e2a40842669e7c5a72529f4187cd376d32a4f35fb7057087aa0615cc024de9edc1d9b54047d2e25972a5b056af4095cd
|
data/CHANGELOG.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 Henrique Shiraishi
|
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,35 @@
|
|
1
|
+
# Market Hub
|
2
|
+
|
3
|
+
[](https://badge.fury.io/rb/market_hub)
|
4
|
+
|
5
|
+
## Instalação
|
6
|
+
|
7
|
+
Biblioteca está disponível no RubyGems e pode ser instalada via:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
gem install market_hub
|
11
|
+
```
|
12
|
+
|
13
|
+
ou adiciona no arquivo Gemfile e execute o `bundle install`:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'market_hub'
|
17
|
+
```
|
18
|
+
|
19
|
+
## Utilização
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Desenvolvimento
|
24
|
+
|
25
|
+
Depois de verificar o repositório, execute `bin/setup` para instalar as dependências. Em seguida, execute `rake test` para executar os testes. Você também pode executar `bin/console` para um prompt interativo que permitirá que você experimente.
|
26
|
+
|
27
|
+
Para instalar esta gem em sua máquina local, execute `bundle exec rake install`. Para lançar uma nova versão, atualize o número da versão em `version.rb`, e então execute `bundle exec rake release`, que criará uma tag git para a versão, push git commits e a tag criada, e envia o pacote `.gem` para o [rubygems.org](https://rubygems.org).
|
28
|
+
|
29
|
+
## Contribuição
|
30
|
+
|
31
|
+
Relatórios de bugs e solicitações pull são bem-vindos no GitHub em https://github.com/henriqueshiraishi/ruby-market_hub.
|
32
|
+
|
33
|
+
## Licença
|
34
|
+
|
35
|
+
A gema está disponível como código aberto sob os termos da [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rake/testtask"
|
5
|
+
|
6
|
+
Rake::TestTask.new(:test) do |t|
|
7
|
+
t.libs << "test"
|
8
|
+
t.libs << "lib"
|
9
|
+
t.test_files = FileList["test/**/test_*.rb"]
|
10
|
+
t.warning = false
|
11
|
+
end
|
12
|
+
|
13
|
+
task default: :test
|
data/lib/market_hub.rb
ADDED
data/sig/market_hub.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: market_hub
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Henrique Shiraishi
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- henriqueashiraishi@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- CHANGELOG.md
|
21
|
+
- LICENSE.txt
|
22
|
+
- README.md
|
23
|
+
- Rakefile
|
24
|
+
- lib/market_hub.rb
|
25
|
+
- lib/market_hub/version.rb
|
26
|
+
- sig/market_hub.rbs
|
27
|
+
homepage: https://github.com/henriqueshiraishi/ruby-market_hub
|
28
|
+
licenses:
|
29
|
+
- MIT
|
30
|
+
metadata:
|
31
|
+
homepage_uri: https://github.com/henriqueshiraishi/ruby-market_hub
|
32
|
+
source_code_uri: https://github.com/henriqueshiraishi/ruby-market_hub
|
33
|
+
changelog_uri: https://github.com/henriqueshiraishi/ruby-market_hub/blob/main/CHANGELOG.md
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.7.8
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubygems_version: 3.1.6
|
50
|
+
signing_key:
|
51
|
+
specification_version: 4
|
52
|
+
summary: Integração com Marketplace, E-commerce, Transportadora e Dropshipping.
|
53
|
+
test_files: []
|