Skip to content

Commit

Permalink
Fixed so that rake install works now.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinelliott committed Sep 10, 2011
1 parent ab34b4c commit 5b90428
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/agent_orange/version.rb
@@ -1,9 +1,11 @@
class AgentOrange::Version
module AgentOrange
VERSION = "0.0.1" # This is for the gem and does not conflict with the rest of the functionality

attr_accessor :major, :minor, :patch_level, :build_number

def to_s
"#{self.major}.#{self.minor}"
class Version
attr_accessor :major, :minor, :patch_level, :build_number

def to_s
"#{self.major}.#{self.minor}"
end
end
end

0 comments on commit 5b90428

Please sign in to comment.