-
Notifications
You must be signed in to change notification settings - Fork 38
/
animate-sass.gemspec
28 lines (24 loc) · 1.02 KB
/
animate-sass.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
require './lib/animate-sass'
Gem::Specification.new do |s|
# Release information
s.version = AnimateSass::VERSION
s.date = AnimateSass::DATE
# Gem author details
s.name = "animate-sass"
s.summary = %q{Sass and Compass CSS animation library for WebKit, Firefox and beyond, based on Animate.css} # one-liner
s.description = %q{Animate.sass is a Sass and Compass CSS animation library for WebKit, Firefox and beyond based on the work being done in Animate.css} # long-form
s.authors = ["Adam Stacoviak"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/adamstac/animate.sass"
# Gem files
# These are the files that get distributated in the gem
s.files = ["README.mdown"]
s.files += Dir.glob("lib/**/*.*")
s.files += Dir.glob("stylesheets/**/*.*")
# s.files += Dir.glob("templates/**/*.*")
# Gem bookkeeping
s.required_rubygems_version = ">= 1.3.6"
s.rubygems_version = %q{1.3.6}
# Adding a dependency for Compass ensures we also install Sass
s.add_dependency("compass", [">= 0.11.5"])
end