diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-01-08 12:08:08 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-01-08 12:08:08 +0100 |
commit | e3c6b822d3fc972bfad1e88ed8461eb928595ae0 (patch) | |
tree | 11921165a8f0923e951a0658233a79396c3245b5 | |
parent | 72ed6aec96b63b450705ec36f36ed6fda32a39d8 (diff) | |
download | zorglub-e3c6b822d3fc972bfad1e88ed8461eb928595ae0.zip zorglub-e3c6b822d3fc972bfad1e88ed8461eb928595ae0.tar.gz |
zorglub.rb swallows version.rb
-rw-r--r-- | lib/version.rb | 10 | ||||
-rw-r--r-- | lib/zorglub.rb | 5 | ||||
-rw-r--r-- | zorglub.gemspec | 2 |
3 files changed, 5 insertions, 12 deletions
diff --git a/lib/version.rb b/lib/version.rb deleted file mode 100644 index 7f01167..0000000 --- a/lib/version.rb +++ /dev/null @@ -1,10 +0,0 @@ -#! /usr/bin/env ruby -# -*- coding: UTF-8 -*- -# -module Zorglub - # - VERSION = '0.0.6' - # -end -# -# EOF diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 4d1cd9c..3642dcf 100644 --- a/lib/zorglub.rb +++ b/lib/zorglub.rb @@ -1,7 +1,10 @@ #! /usr/bin/env ruby # -*- coding: UTF-8 -*- # -require 'version' +module Zorglub + VERSION = '0.0.6' +end +# require 'zorglub/node' require 'zorglub/app' # diff --git a/zorglub.gemspec b/zorglub.gemspec index c88937f..29965d1 100644 --- a/zorglub.gemspec +++ b/zorglub.gemspec @@ -2,7 +2,7 @@ # -*- coding: UTF-8 -*- # $:.push File.expand_path("../lib", __FILE__) -require 'version' +require 'zorglub' # Gem::Specification.new do |s| s.name = "zorglub" |