-
Notifications
You must be signed in to change notification settings - Fork 0
/
cactu.gemspec
26 lines (21 loc) · 1.05 KB
/
cactu.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cactu/version"
Gem::Specification.new do |spec|
spec.name = "cactu"
spec.version = Cactu::VERSION
spec.authors = ["Giovanni Mendoza"]
spec.email = ["[email protected]"]
spec.summary = %q{A Sass framework to create webs easily, created to be simple, semantic, fast to learn, customizable, and scalable.}
spec.homepage = "http://cactu.site"
spec.license = "MIT"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.add_runtime_dependency 'sassc', '~> 1.12', '>= 1.12.1'
spec.add_runtime_dependency 'autoprefixer-rails', '~> 9.1', '>= 9.1.0'
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency 'term-ansicolor', '~> 0'
spec.add_development_dependency 'sprockets-rails', '~> 2.3', '>= 2.3.2'
spec.add_development_dependency 'uglifier', '~> 0'
end