infinum_fonts 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/.gitignore +2 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +14 -0
- data/MIT-LICENSE +20 -0
- data/README.md +25 -0
- data/app/assets/fonts/pfbeausanspro-reg.eot +0 -0
- data/app/assets/fonts/pfbeausanspro-reg.svg +2440 -0
- data/app/assets/fonts/pfbeausanspro-reg.ttf +0 -0
- data/app/assets/fonts/pfbeausanspro-sebold.eot +0 -0
- data/app/assets/fonts/pfbeausanspro-sebold.svg +2440 -0
- data/app/assets/fonts/pfbeausanspro-sebold.ttf +0 -0
- data/app/assets/fonts/pfbeausanspro-thin.eot +0 -0
- data/app/assets/fonts/pfbeausanspro-thin.svg +2440 -0
- data/app/assets/fonts/pfbeausanspro-thin.ttf +0 -0
- data/app/assets/stylesheets/infinum_fonts.scss +29 -0
- data/bin/rails +8 -0
- data/infinum_fonts.gemspec +18 -0
- data/lib/infinum_fonts.rb +4 -0
- data/lib/infinum_fonts/engine.rb +8 -0
- data/lib/infinum_fonts/version.rb +3 -0
- metadata +64 -0
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'PFBeauSansPro-Reg';
|
3
|
+
src: asset-url('pfbeausanspro-reg.eot');
|
4
|
+
src: asset-url('pfbeausanspro-reg.eot?#iefix') format('embedded-opentype'),
|
5
|
+
asset-url('pfbeausanspro-reg.ttf') format('truetype'),
|
6
|
+
asset-url('pfbeausanspro-reg.svg#PFBeauSansPro-Reg') format('svg');
|
7
|
+
font-weight: normal;
|
8
|
+
font-style: normal;
|
9
|
+
}
|
10
|
+
|
11
|
+
@font-face {
|
12
|
+
font-family: 'PFBeauSansPro-Thin';
|
13
|
+
src: asset-url('pfbeausanspro-thin.eot');
|
14
|
+
src: asset-url('pfbeausanspro-thin.eot?#iefix') format('embedded-opentype'),
|
15
|
+
asset-url('pfbeausanspro-thin.ttf') format('truetype'),
|
16
|
+
asset-url('pfbeausanspro-thin.svg#PFBeauSansPro-Thin') format('svg');
|
17
|
+
font-weight: normal;
|
18
|
+
font-style: normal;
|
19
|
+
}
|
20
|
+
|
21
|
+
@font-face {
|
22
|
+
font-family: "PFBeauSansPro-SeBold";
|
23
|
+
src: asset-url('pfbeausanspro-sebold.eot');
|
24
|
+
src: asset-url('pfbeausanspro-sebold.eot?#iefix') format('embedded-opentype'),
|
25
|
+
asset-url('pfbeausanspro-sebold.ttf') format('truetype'),
|
26
|
+
asset-url('pfbeausanspro-sebold.svg#pf_beausans_pro_semiboldRg') format('svg');
|
27
|
+
font-weight: normal;
|
28
|
+
font-style: normal;
|
29
|
+
}
|
data/bin/rails
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
|
3
|
+
|
4
|
+
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
5
|
+
ENGINE_PATH = File.expand_path('../../lib/infinum_fonts/engine', __FILE__)
|
6
|
+
|
7
|
+
require 'rails/all'
|
8
|
+
require 'rails/engine/commands'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require "infinum_fonts/version"
|
5
|
+
|
6
|
+
# Describe your gem and declare its dependencies:
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "infinum_fonts"
|
9
|
+
s.version = InfinumFonts::VERSION
|
10
|
+
s.authors = ["Damir Svrtan"]
|
11
|
+
s.email = ["damir.svrtan@infinum.hr"]
|
12
|
+
s.homepage = "https://github.com/infinum/infinum_fonts/"
|
13
|
+
s.summary = "Easily plugin InfinumFonts."
|
14
|
+
s.description = "Gem containing three oftenly used Infinum fonts."
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = Dir["test/**/*"]
|
18
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
module InfinumFonts
|
2
|
+
class Engine < ::Rails::Engine
|
3
|
+
initializer :assets, :group => :all do
|
4
|
+
::Rails.application.config.assets.paths << ::Rails.root.join('app', 'assets', 'fonts')
|
5
|
+
::Rails.application.config.assets.precompile += [/\Apfbeausanspro.*/]
|
6
|
+
end
|
7
|
+
end
|
8
|
+
end
|
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: infinum_fonts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Damir Svrtan
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-09-18 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Gem containing three oftenly used Infinum fonts.
|
14
|
+
email:
|
15
|
+
- damir.svrtan@infinum.hr
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- Gemfile
|
22
|
+
- Gemfile.lock
|
23
|
+
- MIT-LICENSE
|
24
|
+
- README.md
|
25
|
+
- app/assets/fonts/pfbeausanspro-reg.eot
|
26
|
+
- app/assets/fonts/pfbeausanspro-reg.svg
|
27
|
+
- app/assets/fonts/pfbeausanspro-reg.ttf
|
28
|
+
- app/assets/fonts/pfbeausanspro-sebold.eot
|
29
|
+
- app/assets/fonts/pfbeausanspro-sebold.svg
|
30
|
+
- app/assets/fonts/pfbeausanspro-sebold.ttf
|
31
|
+
- app/assets/fonts/pfbeausanspro-thin.eot
|
32
|
+
- app/assets/fonts/pfbeausanspro-thin.svg
|
33
|
+
- app/assets/fonts/pfbeausanspro-thin.ttf
|
34
|
+
- app/assets/stylesheets/infinum_fonts.scss
|
35
|
+
- bin/rails
|
36
|
+
- infinum_fonts.gemspec
|
37
|
+
- lib/infinum_fonts.rb
|
38
|
+
- lib/infinum_fonts/engine.rb
|
39
|
+
- lib/infinum_fonts/version.rb
|
40
|
+
homepage: https://github.com/infinum/infinum_fonts/
|
41
|
+
licenses: []
|
42
|
+
metadata: {}
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
require_paths:
|
46
|
+
- lib
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
requirements: []
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 2.4.5
|
60
|
+
signing_key:
|
61
|
+
specification_version: 4
|
62
|
+
summary: Easily plugin InfinumFonts.
|
63
|
+
test_files: []
|
64
|
+
has_rdoc:
|