Sha256: 5939056476125c6295675af037b93c3aa69f18f9931995ada52e85ef0562ad2b
Contents?: true
Size: 794 Bytes
Versions: 18
Compression:
Stored size: 794 Bytes
Contents
require 'date' require 'find' require_relative "lib/livetext" Gem::Specification.new do |s| system("rm -f *.gem") s.name = 'livetext' s.version = Livetext::VERSION s.date = Date.today.strftime("%Y-%m-%d") s.summary = "A smart processor for text" s.description = "A smart text processor extensible in Ruby" s.authors = ["Hal Fulton"] s.email = 'rubyhacker@gmail.com' s.executables << "livetext" # Files... main = Find.find("bin").to_a + Find.find("lib").to_a + Find.find("plugin").to_a + Find.find("imports").to_a misc = %w[./README.lt3 ./README.md livetext.gemspec] test = Find.find("test").to_a s.files = main + misc + test s.homepage = 'https://github.com/Hal9000/livetext' s.license = "Ruby" end
Version data entries
18 entries across 18 versions & 1 rubygems