forked from sass/ruby-libsass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsassc.gemspec
More file actions
27 lines (21 loc) · 944 Bytes
/
Copy pathsassc.gemspec
File metadata and controls
27 lines (21 loc) · 944 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
# -*- encoding: utf-8 -*-
#require File.expand_path('../lib/sassc', __FILE__)
$gemspec = Gem::Specification.new do |gem|
gem.name = "sassc"
gem.authors = ["Hampton Catlin", "Aaron Leung"]
gem.email = ["hcatlin@gmail.com"]
gem.description = %q{A Ruby wrapper for the libsass project}
gem.summary = %q{libsass wrapper}
gem.homepage = "http://github.com/hcatlin/sassruby"
gem.files = `git ls-files`.split("\n")
gem.executables = []#gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.platform = Gem::Platform::RUBY
gem.extensions = ["ext/libsass/extconf.rb"]
gem.require_paths = ["lib", "ext"]
gem.version = "0.3"#SassC::VERSION
gem.add_dependency('ffi')
gem.add_dependency('rake-compiler')
gem.add_development_dependency("guard")
gem.add_development_dependency("guard-test")
end