Sha256: 08bdcde82e1b0f8260449c3cf59852424370af2e073b1a57cca38fb723f7dab0
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 KB
Contents
require 'date' require 'find' $LOAD_PATH << "lib" require "runeblog_version" Gem.post_install do |spec| Dir.chdir(RuneBlog::Path) system("livetext -i liveblog.rb") end spec = 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.95' s.add_runtime_dependency 'rubytext', '~> 0.1', '>= 0.1.16' s.add_development_dependency 'minitest', '~> 5.10', '>= 5.10.0' # Files... main = Find.find("bin").to_a + Find.find("lib").to_a data = Find.find("data").to_a test = Find.find("test").to_a misc = %w[./README.lt3 ./README.md ./runeblog.gemspec] empty_view = Find.find("empty_view").to_a s.files = main + misc + data + test + empty_view s.homepage = 'https://github.com/Hal9000/runeblog' s.license = "Ruby" s.post_install_message = "\n Success! Run 'blog' command and type h for help.\n " end spec
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
runeblog-0.2.78 | ./runeblog.gemspec |
runeblog-0.2.77 | ./runeblog.gemspec |
runeblog-0.2.76 | ./runeblog.gemspec |
runeblog-0.2.75 | ./runeblog.gemspec |