font-roboto-rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +102 -0
- data/Rakefile +2 -0
- data/app/assets/fonts/roboto-bold.eot +0 -0
- data/app/assets/fonts/roboto-bold.ttf +0 -0
- data/app/assets/fonts/roboto-bold.woff +0 -0
- data/app/assets/fonts/roboto-bold.woff2 +0 -0
- data/app/assets/fonts/roboto-light.eot +0 -0
- data/app/assets/fonts/roboto-light.ttf +0 -0
- data/app/assets/fonts/roboto-light.woff +0 -0
- data/app/assets/fonts/roboto-light.woff2 +0 -0
- data/app/assets/fonts/roboto-medium.eot +0 -0
- data/app/assets/fonts/roboto-medium.ttf +0 -0
- data/app/assets/fonts/roboto-medium.woff +0 -0
- data/app/assets/fonts/roboto-medium.woff2 +0 -0
- data/app/assets/fonts/roboto-regular.eot +0 -0
- data/app/assets/fonts/roboto-regular.ttf +0 -0
- data/app/assets/fonts/roboto-regular.woff +0 -0
- data/app/assets/fonts/roboto-regular.woff2 +0 -0
- data/app/assets/fonts/roboto-thin.eot +0 -0
- data/app/assets/fonts/roboto-thin.ttf +0 -0
- data/app/assets/fonts/roboto-thin.woff +0 -0
- data/app/assets/fonts/roboto-thin.woff2 +0 -0
- data/app/assets/stylesheets/font-roboto-rails.less +43 -0
- data/lib/font-roboto-rails.rb +5 -0
- data/lib/font-roboto-rails/version.rb +3 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 465a47b70678e5bf94808d71c491a8f1c4364658
|
4
|
+
data.tar.gz: 03aae24cee750ae985fbc31659d56ec2ad17a6d2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 738e526df2b10729b78210957368b773f2fa517ea12d530c82fc2c512f56a5bb1c1b68d67d32d39274aa66cfeec31f71e46230f06208ed4e6945dc2364277671
|
7
|
+
data.tar.gz: 0a5d8a8388ca12d689d207b7b57a9f7f91b9e23819acaa8ec1ecc54638602d65fa016471b490918e26c5e7987ce259db458aaf2cc7fa741c0f4a2ba2f6b20a39
|
data/README.md
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
## Font Kit Rails - Font kit for your rails app
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add the following line to your `Gemfile` and run `bundle install`:
|
6
|
+
|
7
|
+
### Rails
|
8
|
+
|
9
|
+
```
|
10
|
+
gem 'font-kit-rails', git: 'https://github.com/chezka/font-kit-rails.git'
|
11
|
+
```
|
12
|
+
|
13
|
+
Include font-kit-rails css file (all fonts) in your application.css:
|
14
|
+
|
15
|
+
```
|
16
|
+
*= require font-kit-rails
|
17
|
+
```
|
18
|
+
|
19
|
+
or load a specific font:
|
20
|
+
|
21
|
+
|
22
|
+
```
|
23
|
+
*= require font-kit-rails/droid-sans
|
24
|
+
```
|
25
|
+
|
26
|
+
```
|
27
|
+
*= require font-kit-rails/roboto
|
28
|
+
```
|
29
|
+
|
30
|
+
```
|
31
|
+
*= require font-kit-rails/open-sans
|
32
|
+
```
|
33
|
+
|
34
|
+
```
|
35
|
+
*= require font-kit-rails/pt-serif
|
36
|
+
```
|
37
|
+
|
38
|
+
```
|
39
|
+
*= require font-kit-rails/ubuntu
|
40
|
+
```
|
41
|
+
|
42
|
+
## Fonts
|
43
|
+
|
44
|
+
### Droid Sans
|
45
|
+
|
46
|
+
```
|
47
|
+
font-family: 'Droid Sans'
|
48
|
+
|
49
|
+
normal
|
50
|
+
bold
|
51
|
+
```
|
52
|
+
|
53
|
+
### Open Sans
|
54
|
+
|
55
|
+
```
|
56
|
+
font-family: 'Open Sans'
|
57
|
+
|
58
|
+
300
|
59
|
+
300|italic
|
60
|
+
normal
|
61
|
+
normal|italic
|
62
|
+
600
|
63
|
+
600|italic
|
64
|
+
bold
|
65
|
+
bold|italic
|
66
|
+
900
|
67
|
+
900|italic
|
68
|
+
```
|
69
|
+
|
70
|
+
### PT Serif
|
71
|
+
|
72
|
+
```
|
73
|
+
font-family: 'PT Serif'
|
74
|
+
|
75
|
+
normal
|
76
|
+
normal|italic
|
77
|
+
600
|
78
|
+
600|italic
|
79
|
+
bold
|
80
|
+
bold|italic
|
81
|
+
```
|
82
|
+
|
83
|
+
### Ubuntu
|
84
|
+
|
85
|
+
```
|
86
|
+
font-family: 'Ubuntu'
|
87
|
+
|
88
|
+
300
|
89
|
+
300:italic
|
90
|
+
normal
|
91
|
+
normal|italic
|
92
|
+
600
|
93
|
+
600|italic
|
94
|
+
bold
|
95
|
+
bold|italic
|
96
|
+
```
|
97
|
+
|
98
|
+
### Roboto
|
99
|
+
|
100
|
+
```
|
101
|
+
font-family: 'Roboto'
|
102
|
+
```
|
data/Rakefile
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,43 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'Roboto';
|
3
|
+
src: font-url('roboto-thin.eot');
|
4
|
+
src: font-url('roboto-thin.eot#iefix') format('embedded-opentype'),
|
5
|
+
font-url('roboto-thin.woff2') format('woff2'),
|
6
|
+
font-url('roboto-thin.woff') format('woff'),
|
7
|
+
font-url('roboto-thin.ttf') format('truetype');
|
8
|
+
font-weight: 300;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
|
12
|
+
@font-face {
|
13
|
+
font-family: 'Roboto';
|
14
|
+
src: font-url('roboto-regular.eot');
|
15
|
+
src: font-url('roboto-regular.eot#iefix') format('embedded-opentype'),
|
16
|
+
font-url('roboto-regular.woff2') format('woff2'),
|
17
|
+
font-url('roboto-regular.woff') format('woff'),
|
18
|
+
font-url('roboto-regular.ttf') format('truetype');
|
19
|
+
font-weight: 400;
|
20
|
+
font-style: normal;
|
21
|
+
}
|
22
|
+
|
23
|
+
@font-face {
|
24
|
+
font-family: 'Roboto';
|
25
|
+
src: font-url('roboto-medium.eot');
|
26
|
+
src: font-url('roboto-medium.eot#iefix') format('embedded-opentype'),
|
27
|
+
font-url('roboto-medium.woff2') format('woff2'),
|
28
|
+
font-url('roboto-medium.woff') format('woff'),
|
29
|
+
font-url('roboto-medium.ttf') format('truetype');
|
30
|
+
font-weight: 500;
|
31
|
+
font-style: normal;
|
32
|
+
}
|
33
|
+
|
34
|
+
@font-face {
|
35
|
+
font-family: 'Roboto';
|
36
|
+
src: font-url('roboto-bold.eot');
|
37
|
+
src: font-url('roboto-bold.eot#iefix') format('embedded-opentype'),
|
38
|
+
font-url('roboto-bold.woff2') format('woff2'),
|
39
|
+
font-url('roboto-bold.woff') format('woff'),
|
40
|
+
font-url('roboto-bold.ttf') format('truetype');
|
41
|
+
font-weight: 700;
|
42
|
+
font-style: normal;
|
43
|
+
}
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: font-roboto-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Vladimir Radetsky
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-02-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 5.0.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 5.0.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: less
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Just font
|
42
|
+
email:
|
43
|
+
- chezka.rus@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- README.md
|
49
|
+
- Rakefile
|
50
|
+
- app/assets/fonts/roboto-bold.eot
|
51
|
+
- app/assets/fonts/roboto-bold.ttf
|
52
|
+
- app/assets/fonts/roboto-bold.woff
|
53
|
+
- app/assets/fonts/roboto-bold.woff2
|
54
|
+
- app/assets/fonts/roboto-light.eot
|
55
|
+
- app/assets/fonts/roboto-light.ttf
|
56
|
+
- app/assets/fonts/roboto-light.woff
|
57
|
+
- app/assets/fonts/roboto-light.woff2
|
58
|
+
- app/assets/fonts/roboto-medium.eot
|
59
|
+
- app/assets/fonts/roboto-medium.ttf
|
60
|
+
- app/assets/fonts/roboto-medium.woff
|
61
|
+
- app/assets/fonts/roboto-medium.woff2
|
62
|
+
- app/assets/fonts/roboto-regular.eot
|
63
|
+
- app/assets/fonts/roboto-regular.ttf
|
64
|
+
- app/assets/fonts/roboto-regular.woff
|
65
|
+
- app/assets/fonts/roboto-regular.woff2
|
66
|
+
- app/assets/fonts/roboto-thin.eot
|
67
|
+
- app/assets/fonts/roboto-thin.ttf
|
68
|
+
- app/assets/fonts/roboto-thin.woff
|
69
|
+
- app/assets/fonts/roboto-thin.woff2
|
70
|
+
- app/assets/stylesheets/font-roboto-rails.less
|
71
|
+
- lib/font-roboto-rails.rb
|
72
|
+
- lib/font-roboto-rails/version.rb
|
73
|
+
homepage: https://rubygems.org/gems/font-roboto-rails
|
74
|
+
licenses: []
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.6.9
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: Font Roboto Rails - Roboto font for rails.
|
96
|
+
test_files: []
|