Just updated albacore to version 0.14 and ran into a major problem.
My current environment is:
- Ruby 1.9.1
- Rake 0.8.7
- Albacore 0.1.4
The problem is that as of now all my rake build throw a funny little exception:
undefined method 'push' for #<Enumerator:0x???????>
So far I have traced the problem to albacore msbuild.rb line 38 and 26.
To be honest I just don’t have a clue why this is happening. As a little help here is the rake task that is turning my hear Grey 🙂
desc "Build solution"
msbuild :build => :prepareOutput do |msb|
msb.properties :configuration => :Release
msb.targets :Clean, :Build
msb.solution = "../xxx/xxx/xxx.sln"
end
i just pushed albacore v0.1.5 up to rubygems.org, which has everything working correctly – except ssh and sftp – for ruby v1.9.1 now.
the ssh and sftp gems that we are using have not been updated to support ruby 1.9.1. hopefully they will be updated at some point. until then… everything except for those two tasks should work.