currency-converter 1.2.0 → 1.2.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/.gitignore +1 -0
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/currency-converter.gemspec +4 -1
- data/lib/currency_converter/version.rb +1 -1
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 655e5b8636644851c4c374f9313d0125c96242dfc6f3dbae16f71f48f2f98805
|
|
4
|
+
data.tar.gz: c6ffca01318cdcda1c52633db3a4ab318c3ffe00d6c9d03d2c0d61d2f63ddf39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d92c18f8f7ba54fd9e6754495b51f22ddac59e4f3f68501853c5ba9dd970e900c078338ab689ce15c6f11cab527836208fbafe650f76ba87cd5d991ed30aabe
|
|
7
|
+
data.tar.gz: cc9a2d4a1291034e96f9ffd1098875a675dc1da41005f413b52e90bc420804f0472da940ac862907a37725041ee31acb05e6733ab909251dcd1b859230600282
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.2.1] - 2026-01-10
|
|
2
|
+
|
|
3
|
+
### Changed
|
|
4
|
+
- **Gemspec Metadata**: Added metadata links for better RubyGems integration
|
|
5
|
+
- Added changelog_uri pointing to CHANGELOG.md
|
|
6
|
+
- Added bug_tracker_uri pointing to GitHub Issues
|
|
7
|
+
- Added documentation_uri pointing to README.md
|
|
8
|
+
- Added wiki_uri pointing to GitHub Wiki
|
|
9
|
+
- These links now appear on the RubyGems.org page for better discoverability
|
|
10
|
+
- **README Badges**: Added professional badges to README
|
|
11
|
+
- Gem Version badge (shows current version)
|
|
12
|
+
- Downloads badge (shows total download count)
|
|
13
|
+
- License badge (shows MIT license)
|
|
14
|
+
|
|
15
|
+
### Notes
|
|
16
|
+
- No functional changes - this is a metadata-only release
|
|
17
|
+
- Improves gem discoverability and professionalism on RubyGems.org
|
|
18
|
+
|
|
1
19
|
## [1.2.0] - 2026-01-10
|
|
2
20
|
|
|
3
21
|
### Added
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CurrencyConverter
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/currency-converter)
|
|
4
|
+
[](https://rubygems.org/gems/currency-converter)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
The CurrencyConverter gem provides an easy way to perform currency conversions. It allows you to convert amounts between different currencies using real-time exchange rates from ExchangeRate-API, while offering caching for performance improvements and comprehensive error handling for robustness.
|
|
4
8
|
|
|
5
9
|
**Version 1.2.0** brings significant improvements including v6 API support, input validation, HTTP timeout protection, and 100% test coverage.
|
data/currency-converter.gemspec
CHANGED
|
@@ -16,7 +16,10 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["source_code_uri"] = "https://github.com/shobhits7/currency_converter"
|
|
19
|
-
|
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/shobhits7/currency_converter/blob/main/CHANGELOG.md"
|
|
20
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/shobhits7/currency_converter/issues"
|
|
21
|
+
spec.metadata["documentation_uri"] = "https://github.com/shobhits7/currency_converter/blob/main/README.md"
|
|
22
|
+
spec.metadata["wiki_uri"] = "https://github.com/shobhits7/currency_converter/wiki"
|
|
20
23
|
|
|
21
24
|
# Specify which files should be added to the gem when it is released.
|
|
22
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: currency-converter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shobhit Jain
|
|
@@ -57,6 +57,10 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
homepage_uri: https://github.com/shobhits7/currency_converter
|
|
59
59
|
source_code_uri: https://github.com/shobhits7/currency_converter
|
|
60
|
+
changelog_uri: https://github.com/shobhits7/currency_converter/blob/main/CHANGELOG.md
|
|
61
|
+
bug_tracker_uri: https://github.com/shobhits7/currency_converter/issues
|
|
62
|
+
documentation_uri: https://github.com/shobhits7/currency_converter/blob/main/README.md
|
|
63
|
+
wiki_uri: https://github.com/shobhits7/currency_converter/wiki
|
|
60
64
|
post_install_message:
|
|
61
65
|
rdoc_options: []
|
|
62
66
|
require_paths:
|