Sha256: 10b38b41ce29155af4f9b65dc15959b2e72a7cfc17d826d6c63a37276b6c5cd4

Contents?: true

Size: 922 Bytes

Versions: 1

Compression:

Stored size: 922 Bytes

Contents

require 'date'
require 'find'

$: << "."
require "lib/version"

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
STDERR.puts "Files are:"
s.files.each {|fn| STDERR.puts "  " + fn }
STDERR.puts
  s.homepage    = 'https://github.com/Hal9000/runeblog'
  s.license     = "Ruby's license"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
runeblog-0.0.69 runeblog.gemspec