-
Notifications
You must be signed in to change notification settings - Fork 242
/
font-awesome-rails.gemspec
24 lines (19 loc) · 1.03 KB
/
font-awesome-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/font-awesome-rails/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["bokmann"]
gem.email = ["[email protected]"]
gem.description = "font-awesome-rails provides the Font-Awesome web fonts and stylesheets as a Rails engine for use with the asset pipeline."
gem.summary = "an asset gemification of the font-awesome icon font library"
gem.homepage = "https://github.com/bokmann/font-awesome-rails"
gem.licenses = ["MIT", "SIL Open Font License"]
gem.files = `git ls-files -- {app,bin,lib,test,spec}/* {LICENSE*,Rakefile,README*}`.split("\n")
gem.test_files = `git ls-files -- {test,spec}/*`.split("\n")
gem.name = "font-awesome-rails"
gem.require_paths = ["lib"]
gem.version = FontAwesome::Rails::VERSION
gem.add_dependency "railties", ">= 3.2", "< 9.0"
gem.add_development_dependency "activesupport"
gem.add_development_dependency "sassc-rails"
gem.required_ruby_version = '>= 1.9.3'
end