российские экономисты установили
"Как поясняет газета "Коммерсант", падение рубля объясняется стремлением инвесторов избавиться от российской валюты."
/** * A factory for generating new instances of Date. You can create * factories for each kind of thing you want to vend in your application. * An example is a payment gateway. You can change the default implementation, * or override the default implementation on a session, request or current call * stack basis. */ object DependencyFactory extends Factory { implicit object time extends FactoryMaker(Helpers.now _) /** * objects in Scala are lazily created. The init() * method creates a List of all the objects. This * results in all the objects getting initialized and * registering their types with the dependency injector */ private def init() { List(time) } init() }