-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrekky.gemspec
27 lines (26 loc) · 914 Bytes
/
trekky.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
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'trekky'
s.version = '0.0.7.rc3'
s.summary = 'Simple, very simple, sass and haml compiler for dear designer friend.'
s.description = 'Simple, very simple, sass and haml compiler.'
s.authors = ['Lucas Florio']
s.email = ['[email protected]']
s.homepage = 'http://github.com/lucasefe/trekky'
s.files = [
'README.md',
'bin/trekky',
'lib/trekky.rb',
'lib/trekky/context.rb',
'lib/trekky/data.rb',
'lib/trekky/haml_source.rb',
'lib/trekky/sass_source.rb',
'lib/trekky/source.rb',
'lib/trekky/static_source.rb']
s.license = 'MIT'
s.executables.push('trekky')
s.add_dependency 'clap', '~> 1.0'
s.add_dependency 'sass', '~> 3.3'
s.add_dependency 'haml', '~> 4.0'
s.add_dependency 'rb-fsevent', '~> 0.9'
end