Skip to content

Commit

Permalink
fix the gem building
Browse files Browse the repository at this point in the history
  • Loading branch information
tcurdt committed Dec 16, 2011
1 parent 9bf4afe commit 04709a2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
25 changes: 11 additions & 14 deletions awestruct.gemspec
@@ -1,24 +1,21 @@

require 'rubygems'

require 'lib/awestruct/version'
require 'awestruct/version'

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "awestruct"
s.version = Awestruct::VERSION
s.author = "Bob McWhirter"
s.email = "bob@mcwhirter.org"
s.summary = "Static site-baking utility"
s.files = [
s.platform = Gem::Platform::RUBY
s.name = "awestruct"
s.version = Awestruct::VERSION
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 = [
s.executables = [
'awestruct',
].flatten
s.require_paths = [ 'lib' ]
s.has_rdoc = true
s.require_paths = [ 'lib' ]
s.has_rdoc = true

s.add_dependency 'hpricot'
s.add_dependency 'haml', '<= 3.1.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/awestruct/version.rb
@@ -1,4 +1,4 @@

module Awestruct
VERSION='0.2.10'
VERSION='0.2.11'
end

0 comments on commit 04709a2

Please sign in to comment.