forked from awestruct/awestruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathawestruct.gemspec
More file actions
31 lines (27 loc) · 795 Bytes
/
awestruct.gemspec
File metadata and controls
31 lines (27 loc) · 795 Bytes
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.1.9"
s.author = "Bob McWhirter"
s.email = "bob@mcwhirter.org"
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'
s.add_dependency 'hashery'
s.add_dependency 'bluecloth'
s.add_dependency 'RedCloth', '<= 4.2.5'
s.add_dependency 'maruku'
s.add_dependency 'compass'
s.add_dependency 'compass-960-plugin'
s.add_dependency 'org-ruby'
end