fontawesome-rails 4.0.3.0 → 4.0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.html +72 -0
- data/README.md +6 -0
- data/lib/fontawesome/rails/railtie.rb +0 -2
- data/lib/fontawesome/rails/version.rb +1 -1
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f1a18b8c8f34a768635dceafac8adf0e328e493
|
4
|
+
data.tar.gz: 3aebf78c138b3412e06f4c7b0b051f19a186e3f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b6e12feda71319c820d7ff0bf121f9974989ed9f3be6e69dc9c31066e7c61d958c2324be0334b5f0f70572f3ebd35bef92f4653ea05a90a9ee09bf1ea17e906
|
7
|
+
data.tar.gz: 94435de260678b1f613b4b1c01c0580884892f06b40dfa810aa1fdb2fd95a034ebd7440039ec1bffdfee83dc0c1a41d61c4a0f47251720e2f2ab375438ff1751
|
data/LICENSE.html
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
---
|
2
|
+
layout: base
|
3
|
+
title: Font Awesome License
|
4
|
+
navbar_active: license
|
5
|
+
relative_path: ../
|
6
|
+
---
|
7
|
+
{% capture jumbotron_h1 %}<i class="fa fa-gavel"></i> License{% endcapture %}
|
8
|
+
{% capture jumbotron_p %}The full details of how Font Awesome is licensed{% endcapture %}
|
9
|
+
|
10
|
+
{% include jumbotron.html %}
|
11
|
+
{% include stripe-social.html %}
|
12
|
+
|
13
|
+
<div class="container">
|
14
|
+
{% capture stripe_ad_content %}
|
15
|
+
<p class="lead">
|
16
|
+
Font Awesome is fully open source and is GPL compatible. You can use it for commercial projects, open source
|
17
|
+
projects, or really just about whatever you want.
|
18
|
+
</p>
|
19
|
+
{% endcapture %}
|
20
|
+
{% include stripe-ad.html %}
|
21
|
+
|
22
|
+
<section>
|
23
|
+
<div class="alert alert-success">
|
24
|
+
<ul class="fa-ul margin-bottom-none">
|
25
|
+
<li>
|
26
|
+
<i class="fa-li fa fa-info-circle fa-lg"></i>Attribution is no longer required as of Font Awesome 3.0 but is much appreciated:
|
27
|
+
"Font Awesome by Dave Gandy - http://fontawesome.io".
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
</div>
|
31
|
+
</section>
|
32
|
+
|
33
|
+
<section>
|
34
|
+
<h2 class="page-header">Font License</h2>
|
35
|
+
<ul>
|
36
|
+
<li>
|
37
|
+
Applies to all desktop and webfont files in the following directory:
|
38
|
+
<code>font-awesome/fonts/</code>.
|
39
|
+
</li>
|
40
|
+
<li>License: {{ site.fontawesome.license.font.version }}</li>
|
41
|
+
<li>URL: <a href="{{ site.fontawesome.license.font.url }}">{{ site.fontawesome.license.font.url }}</a></li>
|
42
|
+
</ul>
|
43
|
+
</section>
|
44
|
+
|
45
|
+
<section>
|
46
|
+
<h2 class="page-header">Code License</h2>
|
47
|
+
<ul>
|
48
|
+
<li>
|
49
|
+
Applies to all CSS and LESS files in the following directories:
|
50
|
+
<code>font-awesome/css/</code>,
|
51
|
+
<code>font-awesome/less/</code>, and
|
52
|
+
<code>font-awesome/scss/</code>.
|
53
|
+
</li>
|
54
|
+
<li>License: {{ site.fontawesome.license.code.version }}</li>
|
55
|
+
<li>URL: <a href="{{ site.fontawesome.license.code.url }}">{{ site.fontawesome.license.code.url }}</a></li>
|
56
|
+
</ul>
|
57
|
+
</section>
|
58
|
+
|
59
|
+
<section>
|
60
|
+
<h2 class="page-header">Documentation License</h2>
|
61
|
+
<ul>
|
62
|
+
<li>Applies to all Font Awesome project files that are not a part of the Font or Code licenses.</li>
|
63
|
+
<li>License: {{ site.fontawesome.license.documentation.version }}</li>
|
64
|
+
<li>URL: <a href="{{ site.fontawesome.license.documentation.url }}">{{ site.fontawesome.license.documentation.url }}</a></li>
|
65
|
+
</ul>
|
66
|
+
</section>
|
67
|
+
|
68
|
+
<section>
|
69
|
+
<h2 class="page-header">Brand Icons</h2>
|
70
|
+
{% include brand-license.html %}
|
71
|
+
</section>
|
72
|
+
</div>
|
data/README.md
CHANGED
@@ -24,6 +24,12 @@ If you are using SASS
|
|
24
24
|
|
25
25
|
Add CSS classes to DOM elements e.g. class='fa fa-bookmark'. [See all icons](http://fontawesome.io/icons/)
|
26
26
|
|
27
|
+
## Troubleshooting
|
28
|
+
|
29
|
+
Restart your Rails application.
|
30
|
+
|
31
|
+
Assets might get cached, removing `//=require "fontawesome"`, refreshing and adding it back in might help.
|
32
|
+
|
27
33
|
## Versioning
|
28
34
|
|
29
35
|
The gem follows Fontawesome versioning conventions e.g. if you need `4.0.3` version of fontawesome
|
metadata
CHANGED
@@ -1,69 +1,69 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fontawesome-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.3.
|
4
|
+
version: 4.0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tadas Tamosauskas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.5'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: railties
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '3.1'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.1'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: actionpack
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.1'
|
69
69
|
description: Fontawesome packaged for Rails Asset Pipeline
|
@@ -73,8 +73,9 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
- .gitignore
|
76
|
+
- ".gitignore"
|
77
77
|
- Gemfile
|
78
|
+
- LICENSE.html
|
78
79
|
- README.md
|
79
80
|
- Rakefile
|
80
81
|
- fontawesome-rails.gemspec
|
@@ -99,19 +100,18 @@ require_paths:
|
|
99
100
|
- lib
|
100
101
|
required_ruby_version: !ruby/object:Gem::Requirement
|
101
102
|
requirements:
|
102
|
-
- -
|
103
|
+
- - ">="
|
103
104
|
- !ruby/object:Gem::Version
|
104
105
|
version: '0'
|
105
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
107
|
requirements:
|
107
|
-
- -
|
108
|
+
- - ">="
|
108
109
|
- !ruby/object:Gem::Version
|
109
110
|
version: '0'
|
110
111
|
requirements: []
|
111
112
|
rubyforge_project:
|
112
|
-
rubygems_version: 2.
|
113
|
+
rubygems_version: 2.5.2
|
113
114
|
signing_key:
|
114
115
|
specification_version: 4
|
115
116
|
summary: Fontawesome for Rails
|
116
117
|
test_files: []
|
117
|
-
has_rdoc:
|