Sha256: 46d1022c96f31bbec383d9d6b20a1859f7ef544c8330958a0b13cd7599c19a6a
Contents?: true
Size: 843 Bytes
Versions: 29
Compression:
Stored size: 843 Bytes
Contents
require 'date' require 'find' $: << "." require "lib/runeblog" 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's license" end
Version data entries
29 entries across 29 versions & 1 rubygems