Skip to content

Commit

Permalink
make it backward compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
mkristian committed Oct 11, 2012
1 parent 5ac5ba7 commit ab07c97
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/ruby/maven/ruby/maven.rb
Expand Up @@ -105,4 +105,13 @@ def exec_in(launchdirectory, *args)
end
end
end

class RubyMaven

def self.new(*args)
warn "deprecated: use Maven::Ruby::Maven instead"
Maven::Ruby::Maven.new(*args)
end
end

end

0 comments on commit ab07c97

Please sign in to comment.