2011-12-15 11:04:12 -05:00
|
|
|
# Ensure we require the local version and not one we might have installed already
|
2011-12-21 12:38:38 -05:00
|
|
|
require File.join([File.dirname(__FILE__),'lib','octopress','version.rb'])
|
2011-12-15 11:04:12 -05:00
|
|
|
spec = Gem::Specification.new do |s|
|
|
|
|
s.name = 'octopress'
|
|
|
|
s.version = Octopress::VERSION
|
2012-01-19 21:35:02 -05:00
|
|
|
s.author = ['Brandon Mathis', 'Adam Williams', 'Scott Davis']
|
2011-12-15 11:04:12 -05:00
|
|
|
s.email = 'brandon@imathis.com'
|
|
|
|
s.homepage = 'http://octopress.org'
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.summary = 'Octopress is a framework designed for Jekyll, the blog aware static site generator powering Github Pages.'
|
2012-01-19 21:35:02 -05:00
|
|
|
s.require_paths = %w(lib)
|
2011-12-15 11:04:12 -05:00
|
|
|
s.has_rdoc = true
|
|
|
|
s.extra_rdoc_files = ['README.rdoc','octopress.rdoc']
|
2012-01-19 21:35:02 -05:00
|
|
|
s.rdoc_options = %w(--title octopress --main README.rdoc -ri)
|
|
|
|
s.executables = %w(octopress)
|
|
|
|
|
|
|
|
|
|
|
|
s.files = %w(Readme.rdoc TODO.txt Rakefile)
|
|
|
|
s.files += Dir["lib/**/*.*"]
|
|
|
|
s.files += Dir["bin/**/*.*"]
|
|
|
|
s.files -= Dir["spec/**/*"]
|
|
|
|
s.files -= Dir["features/**/*"]
|
|
|
|
|
|
|
|
|
2011-12-15 11:04:12 -05:00
|
|
|
s.add_dependency('gli', '~> 1.4.0')
|
2011-12-22 23:23:36 -05:00
|
|
|
s.add_dependency('jekyll', '~> 0.11.0')
|
2012-01-18 16:25:14 -05:00
|
|
|
s.add_dependency('rubyzip', '~> 0.9.5')
|
2012-01-19 21:35:02 -05:00
|
|
|
|
2011-12-15 11:04:12 -05:00
|
|
|
end
|