Skip to content

Commit

Permalink
Some cleanup of pre-coffee stupidity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Masing committed Apr 26, 2010
1 parent f904078 commit 6ddfc72
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified gtin-0.1.0.gem
Binary file not shown.
Binary file added gtin-0.1.1.gem
Binary file not shown.
4 changes: 2 additions & 2 deletions gtin.gemspec
@@ -1,11 +1,11 @@
Gem::Specification.new do |s|
s.name = %q{gtin}
s.version = "0.1.0"
s.version = "0.1.1"
s.date = %q{2009-04-26}
s.authors = ["Hans Masing"]
s.email = %q{rubygems@dragonflydepot.com}
s.summary = %q{GTIN provides basic validation, checksum and conversion functionality for UPC, EAN and GTIN barcode values.}
s.homepage = %q{http://www.dragonflydepot.org/}
s.homepage = %q{http://github.com/hmasing/gtin}
s.description = %q{GTIN provides basic validation, checksum and conversion functionality for UPC, EAN and GTIN barcode values.}
s.files = [ "History.txt", "lib/gtin.rb", "lib/gtin/gtin.rb", "lib/gtin/version.rb", "Manifest.txt", "Rakefile", "README.rdoc", "script/console", "script/destroy", "script/generate", "test/test_gtin.rb", "test/test_helper.rb" ]
end
4 changes: 2 additions & 2 deletions lib/gtin.rb
@@ -1,6 +1,6 @@
$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

module Gtin
VERSION = '0.0.1'
module GTIN
VERSION = '0.1.1'
end
2 changes: 1 addition & 1 deletion lib/gtin/version.rb
@@ -1,7 +1,7 @@
module GTIN #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
MINOR = 0
MINOR = 1
TINY = 1

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

0 comments on commit 6ddfc72

Please sign in to comment.