Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toretore committed Aug 18, 2011
1 parent 9afbe4f commit 01675ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion barby.gemspec
Expand Up @@ -17,6 +17,18 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = ["README"]

s.files = Dir['CHANGELOG', 'README', 'LICENSE', 'lib/**/*', 'vendor/**/*', 'bin/*']
s.executables = ['barby']
#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
4 changes: 2 additions & 2 deletions lib/barby/version.rb
@@ -1,8 +1,8 @@
module Barby #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
MINOR = 4
TINY = 5
MINOR = 5
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit 01675ad

Please sign in to comment.