-
Notifications
You must be signed in to change notification settings - Fork 56
/
stasis.gemspec
34 lines (29 loc) · 1.17 KB
/
stasis.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
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
root = File.expand_path('../', __FILE__)
lib = "#{root}/lib"
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "stasis"
s.version = '0.2.0'
s.platform = Gem::Platform::RUBY
s.authors = [ 'Winton Welsh' ]
s.email = [ '[email protected]' ]
s.homepage = "http://stasis.me"
s.summary = %q{Static sites made powerful}
s.description = %q{Stasis is a dynamic framework for static sites.}
s.executables = `cd #{root} && git ls-files bin/*`.split("\n").collect { |f| File.basename(f) }
s.files = `cd #{root} && git ls-files`.split("\n")
s.require_paths = %w(lib)
s.test_files = `cd #{root} && git ls-files -- {features,test,spec}/*`.split("\n")
s.add_development_dependency "albino"
s.add_development_dependency "coffee-script"
s.add_development_dependency "haml"
s.add_development_dependency "nokogiri"
s.add_development_dependency "rake"
s.add_development_dependency "rocco"
s.add_development_dependency "rspec", "~> 1.0"
s.add_development_dependency "sass"
s.add_dependency "directory_watcher", "1.4.1"
s.add_dependency "slop", "3.3.2"
s.add_dependency "tilt", "~> 2.0"
end