font-kit-rails 1.1.0 → 1.2.0
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/README.md +24 -1
- data/app/assets/stylesheets/font-kit-rails/{droid-sans.css.scss → droid-sans.scss} +0 -0
- data/app/assets/stylesheets/font-kit-rails/{open-sans.css.scss → open-sans.scss} +0 -0
- data/app/assets/stylesheets/font-kit-rails/{pt-serif.css.scss → pt-serif.scss} +0 -0
- data/app/assets/stylesheets/font-kit-rails/{ubuntu.css.scss → ubuntu.scss} +0 -0
- data/lib/font-kit-rails/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 950891a8446be68a1f7a7435104b7bf4b6b5b577
|
|
4
|
+
data.tar.gz: d267dcbbb0841c5dbb79bcc69affd9ff8e7d7b38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b21c23e14d9630322779dcfcfee1237e59caeb780cea54b26397b8193482b9854bc0abd3c8701e47844f4637f82c7cc3c1209f5b65808968196d42c51528915
|
|
7
|
+
data.tar.gz: dd4a6acae06642c10b64acc15e5e0a7515e94d88456201ac968f52a0dd101ced992ae1365c305e216fc62dc7c73907a847d9e6d7eb5c945823cc832dc98d5fc9
|
data/README.md
CHANGED
|
@@ -2,10 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
*Please place an [issue](https://github.com/sandelius/font-kit-rails/issues/new) to request a font.*
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
5
7
|
Add the following line to your `Gemfile` and run `bundle install`:
|
|
6
8
|
|
|
9
|
+
### Rails 4
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
gem 'font-kit-rails', '~> 1.2.0'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Rails 3
|
|
16
|
+
|
|
7
17
|
```
|
|
8
|
-
gem 'font-kit-rails'
|
|
18
|
+
gem 'font-kit-rails', '1.1.0'
|
|
9
19
|
```
|
|
10
20
|
|
|
11
21
|
Include font-kit-rails css file (all fonts) in your application.css:
|
|
@@ -16,6 +26,19 @@ Include font-kit-rails css file (all fonts) in your application.css:
|
|
|
16
26
|
|
|
17
27
|
or load a specific font:
|
|
18
28
|
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
*= require font-kit-rails/droid-sans
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
*= require font-kit-rails/open-sans
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
*= require font-kit-rails/pt-serif
|
|
40
|
+
```
|
|
41
|
+
|
|
19
42
|
```
|
|
20
43
|
*= require font-kit-rails/ubuntu
|
|
21
44
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: font-kit-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobias Sandelius
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -147,10 +147,10 @@ files:
|
|
|
147
147
|
- app/assets/fonts/ubuntu/Ubuntu-RI-webfont.ttf
|
|
148
148
|
- app/assets/fonts/ubuntu/Ubuntu-RI-webfont.woff
|
|
149
149
|
- app/assets/stylesheets/font-kit-rails.css
|
|
150
|
-
- app/assets/stylesheets/font-kit-rails/droid-sans.
|
|
151
|
-
- app/assets/stylesheets/font-kit-rails/open-sans.
|
|
152
|
-
- app/assets/stylesheets/font-kit-rails/pt-serif.
|
|
153
|
-
- app/assets/stylesheets/font-kit-rails/ubuntu.
|
|
150
|
+
- app/assets/stylesheets/font-kit-rails/droid-sans.scss
|
|
151
|
+
- app/assets/stylesheets/font-kit-rails/open-sans.scss
|
|
152
|
+
- app/assets/stylesheets/font-kit-rails/pt-serif.scss
|
|
153
|
+
- app/assets/stylesheets/font-kit-rails/ubuntu.scss
|
|
154
154
|
- lib/font-kit-rails.rb
|
|
155
155
|
- lib/font-kit-rails/version.rb
|
|
156
156
|
homepage: https://github.com/sandelius/font-kit-rails
|
|
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
172
172
|
version: '0'
|
|
173
173
|
requirements: []
|
|
174
174
|
rubyforge_project:
|
|
175
|
-
rubygems_version: 2.
|
|
175
|
+
rubygems_version: 2.4.7
|
|
176
176
|
signing_key:
|
|
177
177
|
specification_version: 4
|
|
178
178
|
summary: Font Kit Rails - Awesome font kit for your rails app.
|