google_font_url 0.1.6 → 0.1.8

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: 4e30a68957ea298bc26642f8a9fa2ef94b32ee4ec1d1a7dceed97ef47fa71bcb
4
- data.tar.gz: 72d32a9a9aeef2d779bb1a0bc819215e4b265c6e72e4f95cd3b7a19f1f9786f4
3
+ metadata.gz: ec2ab76338aafc1aa9ebe4776264381d9671e4977bb028ddcc33bebf11cfef5c
4
+ data.tar.gz: 226b253dbc431ce7c4cb30d11509e94dd3c888963abe37d1c538c525f9c8ab40
5
5
  SHA512:
6
- metadata.gz: aec6b7bf97239be57ce9e9343a37fcb87fa31eee5c952048f79d998f825c455be32353fee7dc3b840d5e6e50eb7fe4be598401a8c5ec02105a99f5d4d7761cb2
7
- data.tar.gz: c0d50a32141724a78512ee0f3bcb0e222c622198612ded670f231640cbd17cce3094e3db03fe30021f48626f86d2b4304db29ed48036e9a3e61a4a6d119b4573
6
+ metadata.gz: 1de12eabd6c21b2e5be7e7689c1565b9dc8f8babe39adfe465e8b9d6de67b6b4b9420a82026dc13e656d91e93f68bd022c7dfb542deca5f49a9c874cb802b29c
7
+ data.tar.gz: b81672242c499026103fc5dd4a368d316c3b0933eec9f4b4b30dd9267d3961b13401b49737c072f959159e4a6f59f658528f15afd9aa06eff11755c99d4f8743
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = "A gem to generate Google Fonts CSS stylelink URLs dynamically and font-face urls." # Short summary
13
13
  spec.description = "This gem provides a simple way to generate Google Fonts URLs with custom font names, weights, and variants. It supports embedding fonts into your web projects effortlessly by generating URLs or complete CSS links, ensuring compatibility with all font styles and weights available in the Google Fonts library."
14
14
  spec.homepage = "https://github.com/mrmalvi/google_font_url"
15
- spec.required_ruby_version = ">= 3.0.0"
15
+ spec.required_ruby_version = ">= 2.0.0"
16
16
 
17
17
  # Add metadata for RubyGems
18
18
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoogleFontUrl
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.8"
5
5
  end
@@ -1,3 +1,6 @@
1
+ require "google_font_url/generator"
2
+ require "google_font_url/utils"
3
+
1
4
  module GoogleFontUrl
2
5
  class Error < StandardError; end
3
6
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_font_url
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - mrmalvi
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-05-05 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rspec
@@ -97,7 +96,6 @@ metadata:
97
96
  homepage_uri: https://github.com/mrmalvi/google_font_url
98
97
  source_code_uri: https://github.com/mrmalvi/google_font_url
99
98
  changelog_uri: https://github.com/mrmalvi/google_font_url/blob/main/CHANGELOG.md
100
- post_install_message:
101
99
  rdoc_options: []
102
100
  require_paths:
103
101
  - lib
@@ -105,15 +103,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
103
  requirements:
106
104
  - - ">="
107
105
  - !ruby/object:Gem::Version
108
- version: 3.0.0
106
+ version: 2.0.0
109
107
  required_rubygems_version: !ruby/object:Gem::Requirement
110
108
  requirements:
111
109
  - - ">="
112
110
  - !ruby/object:Gem::Version
113
111
  version: '0'
114
112
  requirements: []
115
- rubygems_version: 3.5.11
116
- signing_key:
113
+ rubygems_version: 3.6.9
117
114
  specification_version: 4
118
115
  summary: A gem to generate Google Fonts CSS stylelink URLs dynamically and font-face
119
116
  urls.