|
1 | 1 | # frozen_string_literal: true
|
2 | 2 | lib = File.expand_path("../lib", __FILE__)
|
3 |
| -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
| 3 | +$LOAD_PATH.unshift(lib) if !$LOAD_PATH.include?(lib) |
4 | 4 | require "discourse_fonts"
|
5 | 5 |
|
6 | 6 | Gem::Specification.new do |s|
|
7 |
| - s.name = "discourse-fonts" |
8 |
| - s.version = DiscourseFonts::VERSION |
9 |
| - s.summary = "Bundle of customizable Discourse fonts" |
10 |
| - s.description = "Bundle of fonts which can be used to customize the look of Discourse" |
11 |
| - s.authors = ["Bianca Nenciu"] |
12 |
| - s.email = "bianca.nenciu@discourse.org" |
13 |
| - s.files = Dir["lib/*.rb", "vendor/assets/fonts/*.ttf", "vendor/assets/fonts/*.woff", "vendor/assets/fonts/*.woff2", "vendor/assets/fonts/*.otf"] |
14 |
| - s.homepage = "https://github.com/discourse/discourse-fonts" |
15 |
| - s.license = "MIT" |
| 7 | + s.name = "discourse-fonts" |
| 8 | + s.version = DiscourseFonts::VERSION |
| 9 | + s.summary = "Bundle of customizable Discourse fonts" |
| 10 | + s.description = |
| 11 | + "Bundle of fonts which can be used to customize the look of Discourse" |
| 12 | + s.authors = ["Bianca Nenciu"] |
| 13 | + s.email = "bianca.nenciu@discourse.org" |
| 14 | + s.files = |
| 15 | + Dir[ |
| 16 | + "lib/*.rb", |
| 17 | + "vendor/assets/fonts/*.ttf", |
| 18 | + "vendor/assets/fonts/*.woff", |
| 19 | + "vendor/assets/fonts/*.woff2", |
| 20 | + "vendor/assets/fonts/*.otf" |
| 21 | + ] |
| 22 | + s.homepage = "https://github.com/discourse/discourse-fonts" |
| 23 | + s.license = "MIT" |
16 | 24 |
|
17 |
| - s.required_ruby_version = ">= 2.5.0" |
| 25 | + s.required_ruby_version = ">= 3.3.0" |
18 | 26 |
|
19 | 27 | s.add_development_dependency "rake", "~> 13.0"
|
20 |
| - s.add_development_dependency "rubocop-discourse", "~> 2.4.1" |
| 28 | + s.add_development_dependency "rubocop-discourse", "~> 3.9" |
21 | 29 | end
|
0 commit comments