extension DependencyTagConvertible where Self: RawRepresentable, Self.RawValue == Int {
    public var dependencyTag: Tag {
        return .Int(rawValue)
    }
}