font-awesome-sass 3.2.1.1

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.
@@ -0,0 +1,33 @@
1
+ /*!
2
+ * Font Awesome 3.2.1
3
+ * the iconic font designed for Bootstrap
4
+ * ------------------------------------------------------------------------------
5
+ * The full suite of pictographic icons, examples, and documentation can be
6
+ * found at http://fontawesome.io. Stay up to date on Twitter at
7
+ * http://twitter.com/fontawesome.
8
+ *
9
+ * License
10
+ * ------------------------------------------------------------------------------
11
+ * - The Font Awesome font is licensed under SIL OFL 1.1 -
12
+ * http://scripts.sil.org/OFL
13
+ * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
14
+ * http://opensource.org/licenses/mit-license.html
15
+ * - Font Awesome documentation licensed under CC BY 3.0 -
16
+ * http://creativecommons.org/licenses/by/3.0/
17
+ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
18
+ * "Font Awesome by Dave Gandy - http://fontawesome.io"
19
+ *
20
+ * Author - Dave Gandy
21
+ * ------------------------------------------------------------------------------
22
+ * Email: dave@fontawesome.io
23
+ * Twitter: http://twitter.com/davegandy
24
+ * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
+ */
26
+
27
+ @import "variables";
28
+ @import "mixins";
29
+ @import "path";
30
+ @import "core";
31
+ @import "bootstrap";
32
+ @import "extras";
33
+ @import "icons";
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'font/awesome/sass/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "font-awesome-sass"
8
+ spec.version = Font::Awesome::Sass::VERSION
9
+ spec.authors = ["Travis Chase"]
10
+ spec.email = ["travis@travischase.me"]
11
+ spec.description = "Font-Awesome SASS gem for use in Ruby/Rails projects"
12
+ spec.summary = "Font-Awesome SASS"
13
+ spec.homepage = "https://github.com/FortAwesome/font-awesome-sass"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_runtime_dependency 'sass-rails', '>= 3.1.1'
25
+ end
@@ -0,0 +1,10 @@
1
+ require "font/awesome/sass/version"
2
+
3
+ module Font
4
+ module Awesome
5
+ module Sass
6
+ require 'font/awesome/sass/engine'
7
+ require 'font/awesome/sass/version'
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ module Font
2
+ module Awesome
3
+ module Sass
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ module Font
2
+ module Awesome
3
+ module Sass
4
+ VERSION = "3.2.1.1"
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: font-awesome-sass
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.2.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Travis Chase
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: 3.1.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 3.1.1
55
+ description: Font-Awesome SASS gem for use in Ruby/Rails projects
56
+ email:
57
+ - travis@travischase.me
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - Gemfile
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - app/assets/font/FontAwesome.otf
68
+ - app/assets/font/fontawesome-webfont.eot
69
+ - app/assets/font/fontawesome-webfont.svg
70
+ - app/assets/font/fontawesome-webfont.ttf
71
+ - app/assets/font/fontawesome-webfont.woff
72
+ - app/assets/stylesheets/_bootstrap.scss
73
+ - app/assets/stylesheets/_core.scss
74
+ - app/assets/stylesheets/_extras.scss
75
+ - app/assets/stylesheets/_icons.scss
76
+ - app/assets/stylesheets/_mixins.scss
77
+ - app/assets/stylesheets/_path.scss
78
+ - app/assets/stylesheets/_variables.scss
79
+ - app/assets/stylesheets/font-awesome-ie7.scss
80
+ - app/assets/stylesheets/font-awesome.scss
81
+ - font-awesome-sass.gemspec
82
+ - lib/font/awesome/sass.rb
83
+ - lib/font/awesome/sass/engine.rb
84
+ - lib/font/awesome/sass/version.rb
85
+ homepage: https://github.com/FortAwesome/font-awesome-sass
86
+ licenses:
87
+ - MIT
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.0.3
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: Font-Awesome SASS
109
+ test_files: []