-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathceaser-easing.gemspec
More file actions
19 lines (17 loc) · 928 Bytes
/
ceaser-easing.gemspec
File metadata and controls
19 lines (17 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ceaser-easing/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jared Hardy"]
gem.email = ["jared@jaredhardy.com"]
gem.description = %q{a css transition implementation of the Penner equations based on @matthewlein css conversions for compass}
gem.summary = %q{a css transition implementation of the Penner equations based on @matthewlein css conversions for compass}
gem.homepage = "https://github.com/jhardy/compass-ceaser-easing"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ceaser-easing"
gem.require_paths = ["lib"]
gem.version = CeaserEasing::VERSION
gem.add_dependency("compass", [">= 0.12.2"])
gem.add_dependency("rake")
end