-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsinatra-compass.gemspec
28 lines (23 loc) · 1021 Bytes
/
sinatra-compass.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
SPEC = Gem::Specification.new do |s|
# Get the facts.
s.name = "sinatra-compass"
s.version = "0.5.0"
s.description = "Better Compass integration for Sinatra (part of BigBand)."
# BigBand depedencies
s.add_dependency "monkey-lib", "~> #{s.version}"
s.add_dependency "sinatra-advanced-routes", "~> #{s.version}"
s.add_dependency "haml-more", "~> #{s.version}"
s.add_development_dependency "sinatra-test-helper", "~> #{s.version}"
# External dependencies
s.add_dependency "sinatra", "~> 1.0"
s.add_dependency "compass", ">= 0.8.17"
s.add_development_dependency "rspec", ">= 1.3.0"
# Those should be about the same in any BigBand extension.
s.authors = ["Konstantin Haase"]
s.email = "[email protected]"
s.files = Dir["**/*.{rb,md}"] << "LICENSE"
s.has_rdoc = 'yard'
s.homepage = "http://github.com/rkh/#{s.name}"
s.require_paths = ["lib"]
s.summary = s.description
end