octicons-rails 2.0.2.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/app/assets/fonts/octicons-local.ttf +0 -0
- data/app/assets/fonts/octicons.eot +0 -0
- data/app/assets/fonts/octicons.ttf +0 -0
- data/app/assets/fonts/octicons.woff +0 -0
- data/app/assets/stylesheets/octicons.css.erb +13 -1
- data/lib/octicons-rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c48243db427de03becfcc459fb5f656fe3536ba1
|
|
4
|
+
data.tar.gz: d29ec13ed53f9d03d9869da3d8becafa84c33485
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ed8bd1ce3f87d06daf193fb5d72f17ce877715d1c3d84c0750d7d9ed6b07d7be810edef2358eb6c6817c02a1153071242c3c68794346ecee0595c10c3c691d4
|
|
7
|
+
data.tar.gz: b70f2596bd460b895e672e05431083937283faba78b9a609e1a67d5c07be8d5d07114e6503533b93fd7c313d30233fadf36dc5ee7cf59189365fb6f3b99c2ba8
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# octicons-rails
|
|
1
|
+
# octicons-rails [](https://rubygems.org/gems/octicons-rails)
|
|
2
2
|
|
|
3
3
|
Provides [Octicons](http://octicons.github.com/) web fonts and stylesheets as a Rails engine for use with the asset pipeline.
|
|
4
4
|
|
|
@@ -21,6 +21,6 @@ Add the following to your `app/assets/stylesheets/application.scss`:
|
|
|
21
21
|
|
|
22
22
|
## License
|
|
23
23
|
|
|
24
|
-
* The [Octicons](
|
|
25
|
-
* The [Octicons](
|
|
26
|
-
* The [gem octicons-rails](http://github.com/octicons-rails) code licence: MIT (http://choosealicense.com/licenses/mit/)
|
|
24
|
+
* The [Octicons](http://octicons.github.com) font license: SIL OFL 1.1 (http://scripts.sil.org/OFL)
|
|
25
|
+
* The [Octicons](http://octicons.github.com) css files license: MIT (http://choosealicense.com/licenses/mit/)
|
|
26
|
+
* The [gem octicons-rails](http://github.com/torbjon/octicons-rails) code licence: MIT (http://choosealicense.com/licenses/mit/)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Octicons 2.0
|
|
2
|
+
* Octicons 2.1.0 by Github - http://octicons.github.com/
|
|
3
3
|
*
|
|
4
4
|
* (c) 2012-2014 GitHub
|
|
5
5
|
*
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
font-style: normal;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
/*.octicon is optimized for 16px. */
|
|
26
|
+
/*.mega-octicon is optimized for 32px but can be used larger.*/
|
|
25
27
|
.octicon {
|
|
26
28
|
font: normal normal 16px octicons;
|
|
27
29
|
line-height: 1;
|
|
@@ -29,6 +31,11 @@
|
|
|
29
31
|
text-decoration: none;
|
|
30
32
|
-webkit-font-smoothing: antialiased;
|
|
31
33
|
-moz-osx-font-smoothing: grayscale;
|
|
34
|
+
-webkit-user-select: none;
|
|
35
|
+
-moz-user-select: none;
|
|
36
|
+
-ms-user-select: none;
|
|
37
|
+
user-select: none;
|
|
38
|
+
cursor: default;
|
|
32
39
|
}
|
|
33
40
|
.mega-octicon {
|
|
34
41
|
font: normal normal 32px octicons;
|
|
@@ -37,6 +44,11 @@
|
|
|
37
44
|
text-decoration: none;
|
|
38
45
|
-webkit-font-smoothing: antialiased;
|
|
39
46
|
-moz-osx-font-smoothing: grayscale;
|
|
47
|
+
-webkit-user-select: none;
|
|
48
|
+
-moz-user-select: none;
|
|
49
|
+
-ms-user-select: none;
|
|
50
|
+
user-select: none;
|
|
51
|
+
cursor: default;
|
|
40
52
|
}
|
|
41
53
|
|
|
42
54
|
.octicon-alert:before { content: '\f02d'} /* */
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: octicons-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maksim Berjoza
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -68,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
68
68
|
version: '0'
|
|
69
69
|
requirements: []
|
|
70
70
|
rubyforge_project:
|
|
71
|
-
rubygems_version: 2.
|
|
71
|
+
rubygems_version: 2.3.0
|
|
72
72
|
signing_key:
|
|
73
73
|
specification_version: 4
|
|
74
74
|
summary: Awesome Github's Octicons with Rails asset pipeline
|