Sha256: 9d82a7764a17cf607af35d27e6bccc30e4de383595f159cb2be27856f79ae3f0
Contents?: true
Size: 876 Bytes
Versions: 14
Compression:
Stored size: 876 Bytes
Contents
require 'date' require 'find' $LOAD_PATH << "lib" require "runeblog_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.58' s.add_runtime_dependency 'rubytext', '~> 0.1', '>= 0.1.14' # 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" end
Version data entries
14 entries across 14 versions & 1 rubygems