-
Notifications
You must be signed in to change notification settings - Fork 11
/
isbn.gemspec
25 lines (20 loc) · 870 Bytes
/
isbn.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- 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 = "[email protected]"
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