-
Notifications
You must be signed in to change notification settings - Fork 16
/
mathsass.gemspec
39 lines (30 loc) · 879 Bytes
/
mathsass.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
# Release Specific Information
s.version = "0.11.0"
s.date = "2017-04-29"
# Gem Details
s.name = "MathSass"
s.rubyforge_project = "MathSass"
s.summary = %q{Sass mathematical functions.}
s.description = %q{A Sass implementation of mathematical functions.}
s.authors = ["Takeru Suzuki"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/terkel/mathsass"
s.license = "MIT"
# Files to Include
s.require_paths = ["lib"]
# README file
s.files = ["README.md"]
# CHANGELOG
# s.files += ["CHANGELOG.md"]
# Library Files
s.files += Dir.glob("lib/**/*.*")
# Sass Files
s.files += Dir.glob("dist/**/*.*")
# Gem Bookkeeping
s.required_rubygems_version = ">= 1.3.6"
s.rubygems_version = %q{1.3.6}
# Gems Dependencies
s.add_dependency("sass", [">= 3.2"])
end