Sha256: a59c3af74e811ec4e5840706db19fa34fa68ef3599a7a747640faeb7ef552763

Contents?: true

Size: 870 Bytes

Versions: 1

Compression:

Stored size: 870 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.license           = 'MIT'

  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.11 isbn.gemspec