forked from citrininfo/cyaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcyaml.gemspec
More file actions
30 lines (27 loc) · 950 Bytes
/
cyaml.gemspec
File metadata and controls
30 lines (27 loc) · 950 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
# Release Specific Information
s.version = "0.0.45"
s.date = "2012-02-24"
# Gem Details
s.name = "cyaml"
s.authors = ["Michael Gerber"]
s.summary = %q{the yaml framework as compass gem}
s.description = %q{the YAML Framework ( http://www.yaml.de/ ) as compass gem. https://github.com/firemind/cyaml}
s.email = "mike@citrin.ch"
s.homepage = "http://www.citrin.ch/"
# Gem Files
s.files = %w(README.mkdn)
s.files += Dir.glob("lib/**/*.*")
s.files += Dir.glob("stylesheets/**/*.*")
s.files += Dir.glob("templates/**/*")
# Gem Bookkeeping
s.has_rdoc = false
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.add_dependency("compass", [">= 0.10.5"])
s.add_dependency("guard-livereload", [">= 0.4.0"])
s.add_dependency("guard-compass", [">= 0.0.6"])
s.add_dependency("guard-haml", [">= 0.3.2"])
s.add_dependency("nokogiri", [">= 1.5.0"])
end