Sha256: 95e335de4357e2005a33280424e73a6da2183437b187d30c70335a65265f2ee1
Contents?: true
Size: 872 Bytes
Versions: 2
Compression:
Stored size: 872 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 License" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubytext-0.0.48 | ./rubytext.gemspec |
rubytext-0.0.47 | ./rubytext.gemspec |