forked from guard/guard-less
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guard-less.gemspec
28 lines (23 loc) · 989 Bytes
/
guard-less.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'guard/less/version'
Gem::Specification.new do |s|
s.name = 'guard-less'
s.version = Guard::LessVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Brendan Erwin']
s.email = ['brendanjerwin@gmail.com']
s.homepage = 'https://github.com/guard/guard-less'
s.summary = 'Guard gem for Less'
s.description = 'Guard::Less automatically compiles less (like lessc --watch)'
s.required_rubygems_version = '>= 1.3.6'
# s.rubyforge_project = 'guard-less'
s.add_dependency 'guard', '>= 0.2.2'
s.add_dependency 'less', '~> 2.0.5'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'fakefs', '~> 0.3'
s.add_development_dependency 'guard-rspec', '~> 0.4'
s.add_development_dependency 'rspec', '~> 2.6'
s.files = Dir.glob('{lib}/**/*') + %w[README.md]
s.require_path = 'lib'
end