font_awesome 0.0.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +12 -1
- data/font_awesome.gemspec +2 -2
- data/lib/font_awesome/version.rb +1 -1
- metadata +5 -5
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# FontAwesome
|
2
2
|
|
3
|
-
Font Awesome for Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests using the `asset_path` method.
|
3
|
+
Font Awesome for the Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests using the `asset_path` method.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -32,6 +32,17 @@ Then insert an icon in your HTML:
|
|
32
32
|
|
33
33
|
Check out the [Font Awesome website](http://fortawesome.github.com/Font-Awesome/) for details.
|
34
34
|
|
35
|
+
## Versioning
|
36
|
+
|
37
|
+
The versioning of this gem tracks the versioning of Font Awesome starting at 2.0.
|
38
|
+
|
39
|
+
## Modifications
|
40
|
+
|
41
|
+
I've made the following minimal changes the Font Awesome code:
|
42
|
+
|
43
|
+
1. Use the `asset_path` helper so that assets are loaded from the correct path and digests are generated.
|
44
|
+
2. Remove the `svgz` font declaration until the Font Awesome maintainer adds the file ([see issue](https://github.com/FortAwesome/Font-Awesome/issues/233)).
|
45
|
+
|
35
46
|
## Contributing
|
36
47
|
|
37
48
|
1. Fork it
|
data/font_awesome.gemspec
CHANGED
@@ -4,8 +4,8 @@ require File.expand_path('../lib/font_awesome/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Brian Alexander"]
|
6
6
|
gem.email = ["balexand@gmail.com"]
|
7
|
-
gem.description = %q{Font Awesome for Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests.}
|
8
|
-
gem.summary = %q{Font Awesome for Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests.}
|
7
|
+
gem.description = %q{Font Awesome for the Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests.}
|
8
|
+
gem.summary = %q{Font Awesome for the Rails asset pipeline. Doesn't depend on SASS or LESS and properly generates digests.}
|
9
9
|
gem.homepage = "https://github.com/balexand/font_awesome"
|
10
10
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
data/lib/font_awesome/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: font_awesome
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 2.0.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,8 +11,8 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-06-05 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description: Font Awesome for Rails asset pipeline. Doesn't depend on SASS or
|
15
|
-
and properly generates digests.
|
14
|
+
description: Font Awesome for the Rails asset pipeline. Doesn't depend on SASS or
|
15
|
+
LESS and properly generates digests.
|
16
16
|
email:
|
17
17
|
- balexand@gmail.com
|
18
18
|
executables: []
|
@@ -57,6 +57,6 @@ rubyforge_project:
|
|
57
57
|
rubygems_version: 1.8.24
|
58
58
|
signing_key:
|
59
59
|
specification_version: 3
|
60
|
-
summary: Font Awesome for Rails asset pipeline. Doesn't depend on SASS or LESS
|
61
|
-
properly generates digests.
|
60
|
+
summary: Font Awesome for the Rails asset pipeline. Doesn't depend on SASS or LESS
|
61
|
+
and properly generates digests.
|
62
62
|
test_files: []
|