Sha256: e6ea2c8d01511aed5171cbea13dbf495df2d9deee25559851268e5ad00dcd287
Contents?: true
Size: 840 Bytes
Versions: 1
Compression:
Stored size: 840 Bytes
Contents
# -*- encoding: utf-8 -*- $:.unshift("lib") unless $:.include?("lib") version = open("VERSION").read.strip Gem::Specification.new do |s| s.name = "isbn" s.version = version s.date = Time.now.strftime('%Y-%m-%d') s.summary = %Q{a simple library of functions on ISBN\'s} s.homepage = "http://github.com/entangledstate/isbn" s.email = "entangledstate@gmail.com" s.authors = ["Tim Kersey", "Jakub Kaflik"] s.has_rdoc = false s.files = `git ls-files`.split("\n") s.test_files = `git ls-files test`.split("\n") s.executables = `git ls-files bin`.split("\n").map {|f| f[/bin\/(.*)/,1]} s.description = <<desc library to transform ISBN\'s from new to used, between 10 and 13, etc... desc end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
isbn-2.0.10 | isbn.gemspec |