-
Notifications
You must be signed in to change notification settings - Fork 3
/
smallcage.gemspec
18 lines (16 loc) · 1.07 KB
/
smallcage.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/smallcage/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["SAITO Toshihiro", "gommmmmm", "KOSEKI Kengo"]
gem.email = ["[email protected]"]
gem.description = %q{SmallCage is a simple, but powerful website generator. It converts content and template files, which has common elements in a website, to a plain, static website. No database, no application container, and no repeat in many pages is needed. You can keep your site well with very little work.}
gem.summary = %q{a simple website generator}
gem.homepage = %q{http://www.smallcage.org}
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "smallcage"
gem.require_paths = ["lib"]
gem.version = SmallCage::VERSION
gem.post_install_message = "\nSmallCage: Please install syck if you are using Ruby 2.0 or above.\n\n $ gem install syck\n\n"
end