forked from awestruct/awestruct
-
Notifications
You must be signed in to change notification settings - Fork 1
/
awestruct.gemspec
31 lines (27 loc) · 876 Bytes
/
awestruct.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
require 'rubygems'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "awestruct"
s.version = "0.2.2"
s.author = "Bob McWhirter"
s.email = "[email protected]"
s.summary = "Static site-baking utility"
s.files = [
Dir['lib/**/*.rb'],
Dir['lib/**/*.haml'],
].flatten
s.executables = [
'awestruct',
].flatten
s.require_paths = [ 'lib' ]
s.has_rdoc = true
s.add_dependency 'hpricot'
s.add_dependency 'haml', '<= 3.1.0'
s.add_dependency 'sass', '<= 3.1.0'
s.add_dependency 'hashery', '= 1.4.0'
s.add_dependency 'rdiscount', '= 1.6.8'
s.add_dependency 'RedCloth', '<= 4.2.5'
s.add_dependency 'compass', '<= 0.10.6'
s.add_dependency 'compass-960-plugin', '<= 0.10.4'
s.add_dependency 'org-ruby', '= 0.5.3'
end