Skip to content

Commit 5be751e

Browse files
authoredDec 17, 2024··
Introduce Inter font (#10)
Also does the following: * Adds README * Bump gem to v0.0.10 * Bump rubocop-discourse version * Change ruby matrix to be v3.0+ only, no need for old versions like 2.5 to be tested
1 parent 6cf85f2 commit 5be751e

File tree

5 files changed

+292
-202
lines changed

5 files changed

+292
-202
lines changed
 

‎.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby:
17-
- 2.5
18-
- 2.6
19-
- 2.7
20-
- 3.0
17+
- 3.3
18+
- 3.4
2119

2220
steps:
2321
- uses: actions/checkout@v2

‎README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Discourse Fonts
2+
3+
This gem is used to distribute all fonts used for the [Discourse forum software](https://discourse.org/). The main repository for Discourse is [https://github.com/discourse/discourse](https://github.com/discourse/discourse).
4+
5+
This gem can be found on RubyGems at [https://rubygems.org/gems/discourse-fonts](https://rubygems.org/gems/discourse-fonts).
6+
7+
### Adding fonts
8+
9+
Most fonts in this gem are from Google Fonts. When adding a new font, this is the process:
10+
11+
1. Download the font from Google Fonts
12+
2. Make sure the license is added to a text file in vendor/assets/fonts. Sometimes the license will already be present, e.g. OFL is a common license.
13+
3. Copy the downloaded .ttf files to vendor/assets/fonts
14+
4. Add the font name, stack, and variants for e.g. different weights to lib/discourse_fonts.rb following the existing examples
15+
5. Bump the VERSION in this file
16+
17+
To test this gem out locally, you can change the discourse/discourse gemfile to point to your local copy of this gem using the `path` option:
18+
19+
```
20+
gem 'discourse-fonts', path: '/path/to/discourse-fonts'
21+
```
22+
23+
Discourse symlinks the fonts in vendor/assets/fonts to the public/fonts directory, and it should update this symlink when you install the gem from the local path.

‎discourse-fonts.gemspec

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
# frozen_string_literal: true
22
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)
44
require "discourse_fonts"
55

66
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"
1624

17-
s.required_ruby_version = ">= 2.5.0"
25+
s.required_ruby_version = ">= 3.3.0"
1826

1927
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"
2129
end

0 commit comments

Comments
 (0)
Please sign in to comment.