android.moparisthebest.org/octopress/octopress.gemspec

30 lines
1.0 KiB
Ruby
Raw Normal View History

# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','octopress','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'octopress'
s.version = Octopress::VERSION
s.author = ['Brandon Mathis', 'Adam Williams', 'Scott Davis']
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.'
s.require_paths = %w(lib)
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc','octopress.rdoc']
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/**/*"]
s.add_dependency('gli', '~> 1.4.0')
s.add_dependency('jekyll', '~> 0.11.0')
s.add_dependency('rubyzip', '~> 0.9.5')
end