Sha256: 042d67f16489fb271af1f86c1c4b7de62b3fbd5df81797df94ffb9d33a9b1672
Contents?: true
Size: 1021 Bytes
Versions: 2
Compression:
Stored size: 1021 Bytes
Contents
require 'date' require 'find' $LOAD_PATH << "lib" require "runeblog_version" Gem.post_install do |spec| Dir.chdir(RuneBlog::Path) system("livetext -i liveblog.rb") end spec = 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.89' s.add_runtime_dependency 'rubytext', '~> 0.1', '>= 0.1.16' # Files... main = Find.find("bin").to_a + Find.find("lib").to_a + Find.find("themes").to_a test = Find.find("test").to_a misc = %w[./README.lt3 ./README.md ./runeblog.gemspec] s.files = main + misc + test s.homepage = 'https://github.com/Hal9000/runeblog' s.license = "Ruby" end spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
runeblog-0.1.94 | ./runeblog.gemspec |
runeblog-0.1.93 | ./runeblog.gemspec |