Sha256: 207f7e26a8401987799d0b0b94f953c6081cf146bf25ff5cdf0865685a2e2952
Contents?: true
Size: 864 Bytes
Versions: 34
Compression:
Stored size: 864 Bytes
Contents
require 'date' require 'find' $LOAD_PATH << "lib" require "version" Gem::Specification.new do |s| system("rm -f *.gem") s.name = 'rubytext' s.version = RubyText::VERSION s.date = Date.today.strftime("%Y-%m-%d") s.summary = "A thick wrapper for Curses" s.description = "Uses the curses gem and extends functionality and ease of use in Ruby." s.authors = ["Hal Fulton"] s.email = 'rubyhacker@gmail.com' s.executables << "rubytext" s.add_runtime_dependency 'curses', "~> 1.2", ">= 1.2.5" # Files... main = Find.find("lib").to_a bin = Find.find("bin").to_a ex = Find.find("examples").to_a misc = %w[./README.md ./rubytext.gemspec] test = Find.find("test").to_a s.files = main + bin + ex + misc + test s.homepage = 'https://github.com/Hal9000/rubytext' s.license = "Ruby" end
Version data entries
34 entries across 34 versions & 1 rubygems