fundsrb 0.1.0 → 0.1.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 +4 -4
- data/README.md +23 -12
- data/lib/fundsrb/client.rb +1 -1
- data/lib/fundsrb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79972667b304357b54c17eb93f58c4ec50f9e36964ff5b59bc78545735337d71
|
|
4
|
+
data.tar.gz: 144c47bee8d5f063a70969d9b5c6e95a1e21620ab7f73ad921c0b598cedea32d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c37e87c098ffadd83a733dc6f22196a61ed10f0173c27827df700ed6aa98f0ae265ead66d1e88d6942354a8f0ccad0a76f632f7447c66181519e1075fc923eb
|
|
7
|
+
data.tar.gz: 4da28c41404b7fb2a06e13b141aeebd6081a5335387ac7b00c33d3e8bcad2b44fbfca7c39b1e7ec4d4108a5d08a1d5933e94cb6050b671f8f818d92cdcc1f2bf
|
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
# Fundsrb
|
|
1
|
+
# Fundsrb [](https://badge.fury.io/rb/fundsrb)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
A Ruby library to query the fundsexplorer.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -22,17 +20,30 @@ Or install it yourself as:
|
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
23
|
+
```ruby
|
|
24
|
+
require 'fundsrb'
|
|
25
|
+
|
|
26
|
+
client = Fundsrb::Client.new
|
|
27
|
+
client.quotes('BIDI4')
|
|
28
|
+
|
|
29
|
+
{
|
|
30
|
+
:liquidity=>"7.828",
|
|
31
|
+
:dividend=>"R$ 0,59",
|
|
32
|
+
:yield=>"0,53%",
|
|
33
|
+
:patrimony=>"R$ 94,66",
|
|
34
|
+
:pvp=>"1,17",
|
|
35
|
+
:name=>"ALIANZA TRUST RENDA IMOBILIARIA FDO INV IMOB",
|
|
36
|
+
:cnpj=>"28.737.771/0001-85",
|
|
37
|
+
:segment=>"Logistica"
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
## Thanks
|
|
30
41
|
|
|
31
|
-
|
|
42
|
+
Thanks to the [fundsexplorer](https://www.fundsexplorer.com.br) team for build this awesome app.
|
|
32
43
|
|
|
33
44
|
## Contributing
|
|
34
45
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
46
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/hamorim/fundsrb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/hamorim/fundsrb/blob/master/CODE_OF_CONDUCT.md).
|
|
36
47
|
|
|
37
48
|
|
|
38
49
|
## License
|
|
@@ -41,4 +52,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
41
52
|
|
|
42
53
|
## Code of Conduct
|
|
43
54
|
|
|
44
|
-
Everyone interacting in the Fundsrb project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
|
55
|
+
Everyone interacting in the Fundsrb project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hamorim/fundsrb/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/fundsrb/client.rb
CHANGED
data/lib/fundsrb/version.rb
CHANGED