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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41b3778d46388a2a405491288e53299f646d91033c38905f1ff9b8b2a6022ecc
4
- data.tar.gz: ea8d42edb7f824133e28abb514022a5aa217e1e8df877193bd310864baa175f9
3
+ metadata.gz: 655e5b8636644851c4c374f9313d0125c96242dfc6f3dbae16f71f48f2f98805
4
+ data.tar.gz: c6ffca01318cdcda1c52633db3a4ab318c3ffe00d6c9d03d2c0d61d2f63ddf39
5
5
  SHA512:
6
- metadata.gz: e7eb0dbca550cb87b40e2dfad8c071371cdd29a82ba4f306fd8b063494f3d53e00f0023787d3525cd0d09195394bc2844fb8ff45028c32419997129dcb729747
7
- data.tar.gz: 8332235cd209a3121077cd751b383a8505f46658d7e2ff2413238fedd9ae374a277ae423ddec37488ea83e60ecb9f6c9beed3c7cd9e1650ed0c00e477bfb9f28
6
+ metadata.gz: 3d92c18f8f7ba54fd9e6754495b51f22ddac59e4f3f68501853c5ba9dd970e900c078338ab689ce15c6f11cab527836208fbafe650f76ba87cd5d991ed30aabe
7
+ data.tar.gz: cc9a2d4a1291034e96f9ffd1098875a675dc1da41005f413b52e90bc420804f0472da940ac862907a37725041ee31acb05e6733ab909251dcd1b859230600282
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ *.gem
9
10
 
10
11
  # rspec failure tracking
11
12
  .rspec_status
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- currency-converter (1.2.0)
4
+ currency-converter (1.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CurrencyConverter
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/currency-converter.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/currency-converter)
4
+ [![Downloads](https://img.shields.io/gem/dt/currency-converter.svg)](https://rubygems.org/gems/currency-converter)
5
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](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.
@@ -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
- # spec.metadata["changelog_uri"] = "https://github.com/shobhits7/currency_converter"
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CurrencyConverter
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
5
5
  end
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.0
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: