forked from toretore/barby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
barby.gemspec
34 lines (26 loc) · 1.01 KB
/
barby.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
26
27
28
29
30
31
32
33
34
$:.push File.expand_path("../lib", __FILE__)
require "barby/version"
Gem::Specification.new do |s|
s.name = "barby"
s.version = Barby::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.summary = "The Ruby barcode generator"
s.email = "toredarell@gmail.com"
s.homepage = "http://toretore.github.com/barby"
s.description = "Barby creates barcodes."
s.authors = ['Tore Darell']
s.rubyforge_project = "barby"
s.has_rdoc = true
s.extra_rdoc_files = ["README"]
s.files = Dir['CHANGELOG', 'README', 'LICENSE', 'lib/**/*', 'vendor/**/*', 'bin/*']
#s.executables = ['barby'] #WIP, doesn't really work that well
s.require_paths = ["lib"]
s.post_install_message = <<-EOS
*** NEW REQUIRE POLICY ***"
Barby no longer require all barcode symbologies by default. You'll have
to require the ones you need. For example, if you need EAN-13,
require 'barby/barcode/ean_13'; For a full list of symbologies and their
filenames, see README.
***
EOS
end