-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcompass-h5bp.gemspec
23 lines (20 loc) · 1009 Bytes
/
compass-h5bp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'compass/h5bp/version'
Gem::Specification.new do |s|
s.name = 'compass-h5bp'
s.version = Compass::H5bp::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '~> 2.0'
s.authors = ['Peter Gumeson']
s.email = '[email protected]'
s.homepage = 'http://rubygems.org/gems/compass-h5bp'
s.summary = 'Compass extension for HTML5 Boilerplate v5.0'
s.description = 'Compass extension of HTML5 mixins extracted from the HTML5 Boilerplate project (h5bp.com)'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_runtime_dependency 'compass', '~> 1.0', '>= 1.0.3'
end