Sha256: e2de397461dc29bc48c4ebf4e69a75f82a4febf744fba5c6fe7f327e0231b1e5
Contents?: true
Size: 847 Bytes
Versions: 1
Compression:
Stored size: 847 Bytes
Contents
require 'date' require 'find' $LOAD_PATH << "lib" require "version" Gem::Specification.new do |s| system("rm -f *.gem") s.name = 'runeblog' s.version = RuneBlog::VERSION s.date = Date.today.strftime("%Y-%m-%d") s.summary = "A command-line blogging system" s.description = "A blog system based on Ruby and Livetext" s.authors = ["Hal Fulton"] s.email = 'rubyhacker@gmail.com' s.executables << "blog" s.add_runtime_dependency 'livetext', '~> 0.8', '>= 0.8.20' # Files... main = Find.find("bin").to_a + Find.find("lib").to_a + Find.find("data").to_a misc = %w[./README.lt3 ./README.md runeblog.gemspec] test = Find.find("test").to_a s.files = main + misc + test s.homepage = 'https://github.com/Hal9000/runeblog' s.license = "Ruby license" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runeblog-0.0.70 | runeblog.gemspec |