blob: 51b0f3a0bf07d7303495e32ebf595f246948915d (
plain)
1
2
3
4
5
6
7
8
|
class BottleSpecification
def revision(*args)
# Don't announce deprecation yet as this is quite a big change
# to a public interface.
# odeprecated "BottleSpecification.revision", "BottleSpecification.rebuild"
rebuild(*args)
end
end
|