Sha256: de8d6f1536165ea0e0b6c6af2e7f776a7f4f9553eaf9f4cc3261a37246ed6b6f
Contents?: true
Size: 814 Bytes
Versions: 25
Compression:
Stored size: 814 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 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
25 entries across 25 versions & 1 rubygems