forked from foundation/foundation-sites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundation.gemspec
23 lines (20 loc) · 924 Bytes
/
foundation.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/foundation/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["ZURB"]
gem.email = ["[email protected]"]
gem.description = %q{ZURB Foundation on SASS/Compass}
gem.summary = %q{ZURB Foundation on SASS/Compass}
gem.homepage = "http://foundation.zurb.com"
gem.files = `git ls-files`.split($\).reject {|f| /marketing\/*/.match(f)}
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "zurb-foundation"
gem.require_paths = ["lib"]
gem.version = Foundation::VERSION
gem.add_dependency "compass", [">= 0.12.2"]
gem.add_dependency "sass", [">= 3.2.0.alpha.244"]
gem.add_dependency "rake"
gem.add_development_dependency "capistrano"
gem.add_development_dependency "jammit"
end