Modify the version tag to be tool specific.

Perhaps we'll want to log the cli and runtime
gems to the same version in the future, but for
now let's let them vary, and not clash because
they're in the same repo now.
This commit is contained in:
Charles Lowell 2012-03-29 21:41:27 -05:00
parent c3e71bdf8a
commit 2fe7eae584
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
require 'bundler'
Bundler::GemHelper.install_tasks
class Bundler::GemHelper
def version_tag
"runtime-v#{version}"
end
install_tasks
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)