redacted-font-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,69 @@
1
+ @font-face {
2
+ font-family: 'redactedregular';
3
+ src: url('<%= font_path('redacted-regular.eot') %>');
4
+ src: url('<%= font_path('redacted-regular.eot?#iefix') %>') format('embedded-opentype'),
5
+ url('<%= font_path('redacted-regular.woff2') %>') format('woff2'),
6
+ url('<%= font_path('redacted-regular.woff') %>') format('woff'),
7
+ url('<%= font_path('redacted-regular.ttf') %>') format('truetype'),
8
+ url('<%= font_path('redacted-regular.svg#redactedregular') %>') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+
12
+ }
13
+
14
+ @font-face {
15
+ font-family: 'redacted_scriptbold';
16
+ src: url('<%= font_path('redacted-script-bold.eot') %>');
17
+ src: url('<%= font_path('redacted-script-bold.eot?#iefix') %>') format('embedded-opentype'),
18
+ url('<%= font_path('redacted-script-bold.woff2') %>') format('woff2'),
19
+ url('<%= font_path('redacted-script-bold.woff') %>') format('woff'),
20
+ url('<%= font_path('redacted-script-bold.ttf') %>') format('truetype'),
21
+ url('<%= font_path('redacted-script-bold.svg#redacted_scriptbold') %>') format('svg');
22
+ font-weight: normal;
23
+ font-style: normal;
24
+
25
+ }
26
+
27
+ @font-face {
28
+ font-family: 'redacted_scriptlight';
29
+ src: url('<%= font_path('redacted-script-light.eot') %>');
30
+ src: url('<%= font_path('redacted-script-light.eot?#iefix') %>') format('embedded-opentype'),
31
+ url('<%= font_path('redacted-script-light.woff2') %>') format('woff2'),
32
+ url('<%= font_path('redacted-script-light.woff') %>') format('woff'),
33
+ url('<%= font_path('redacted-script-light.ttf') %>') format('truetype'),
34
+ url('<%= font_path('redacted-script-light.svg#redacted_scriptlight') %>') format('svg');
35
+ font-weight: normal;
36
+ font-style: normal;
37
+
38
+ }
39
+
40
+ @font-face {
41
+ font-family: 'redacted_scriptregular';
42
+ src: url('<%= font_path('redacted-script-regular.eot') %>');
43
+ src: url('<%= font_path('redacted-script-regular.eot?#iefix') %>') format('embedded-opentype'),
44
+ url('<%= font_path('redacted-script-regular.woff2') %>') format('woff2'),
45
+ url('<%= font_path('redacted-script-regular.woff') %>') format('woff'),
46
+ url('<%= font_path('redacted-script-regular.ttf') %>') format('truetype'),
47
+ url('<%= font_path('redacted-script-regular.svg#redacted_scriptregular') %>') format('svg');
48
+ font-weight: normal;
49
+ font-style: normal;
50
+
51
+ }
52
+
53
+ .font-redacted {
54
+ font-size: 50px;
55
+ font-family: 'redactedregular';
56
+
57
+ &-script-bold {
58
+ font-family: 'redacted_scriptbold';
59
+ }
60
+
61
+ &-script-light {
62
+ font-family: 'redacted_scriptlight';
63
+ }
64
+
65
+ &-script {
66
+ font-family: 'redacted_scriptregular';
67
+ }
68
+
69
+ }
@@ -0,0 +1,9 @@
1
+ require "redacted/font/rails/engine"
2
+
3
+ module Redacted
4
+ module Font
5
+ module Rails
6
+ # Your code goes here...
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Redacted
2
+ module Font
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Redacted::Font::Rails
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ module Redacted
2
+ module Font
3
+ module Rails
4
+ VERSION = '0.1.0'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :redacted_font_rails do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redacted-font-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Richard Hart
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-24 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.0.beta3
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 5.0.0.beta3
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.1'
33
+ - !ruby/object:Gem::Dependency
34
+ name: sqlite3
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ description: Drop in Redeacted font for Rails.
48
+ email:
49
+ - richard@ur-ban.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - MIT-LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - app/assets/fonts/redacted-regular.eot
58
+ - app/assets/fonts/redacted-regular.svg
59
+ - app/assets/fonts/redacted-regular.ttf
60
+ - app/assets/fonts/redacted-regular.woff
61
+ - app/assets/fonts/redacted-regular.woff2
62
+ - app/assets/fonts/redacted-script-bold.eot
63
+ - app/assets/fonts/redacted-script-bold.svg
64
+ - app/assets/fonts/redacted-script-bold.ttf
65
+ - app/assets/fonts/redacted-script-bold.woff
66
+ - app/assets/fonts/redacted-script-bold.woff2
67
+ - app/assets/fonts/redacted-script-light.eot
68
+ - app/assets/fonts/redacted-script-light.svg
69
+ - app/assets/fonts/redacted-script-light.ttf
70
+ - app/assets/fonts/redacted-script-light.woff
71
+ - app/assets/fonts/redacted-script-light.woff2
72
+ - app/assets/fonts/redacted-script-regular.eot
73
+ - app/assets/fonts/redacted-script-regular.svg
74
+ - app/assets/fonts/redacted-script-regular.ttf
75
+ - app/assets/fonts/redacted-script-regular.woff
76
+ - app/assets/fonts/redacted-script-regular.woff2
77
+ - app/assets/stylesheets/redacted-font.scss.erb
78
+ - lib/redacted/font/rails.rb
79
+ - lib/redacted/font/rails/engine.rb
80
+ - lib/redacted/font/rails/version.rb
81
+ - lib/tasks/redacted/font/rails_tasks.rake
82
+ homepage: https://github.com/Hates/redacted-font-rails
83
+ licenses:
84
+ - MIT
85
+ metadata: {}
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 2.5.1
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Drop in Redeacted font for Rails.
106
+ test_files: []