Poodinis Dependency Injection Framework v1.0.0 released

2015-03-21 Thread Mike Bierlee via Digitalmars-d-announce
I've just released the first production-ready release of the Poodinis Dependency Injection Framework. Poodinis is mainly inspired by the dependency injection framework in Spring. It currently allows you to manually manage dependencies and have them be automatically injected into components

Poodinis 6.0.0 released

2015-12-28 Thread Mike Bierlee via Digitalmars-d-announce
Poodinis 6.0.0 has been released! Poodinis is a dependency injection framework for the D programming language. It is inspired by the Spring Framework and Hypodermic IoC container for C++. Poodinis supports registering and resolving classes either by concrete type or interface. Automatic

Poodinis (DI framework) 6.1.0 released

2016-02-09 Thread Mike Bierlee via Digitalmars-d-announce
Poodinis 6.1.0 has been released! Poodinis is a dependency injection framework for the D programming language. It is heavily inspired by the Spring Framework. Most notable in this release is the ability to autowire private and protected members. Now you can have proper encapsulation again.

Poodinis (DI framework) 7.0.0 released

2016-09-03 Thread Mike Bierlee via Digitalmars-d-announce
Poodinis is a dependency injection framework for the D programming language. It is heavily inspired by the Spring Framework. New in this release is constructor injection. Whenever the dependency container resolves a class it creates an instance of that class. During creation it attempts to

Re: Getters/setters generator

2016-12-10 Thread Mike Bierlee via Digitalmars-d-announce
On Friday, 9 December 2016 at 10:27:05 UTC, Eugene Wissner wrote: It would generate 2 methods "num": one to set num_ and one to get its value. It would be great if you could generate @properties instead. I like the more natural way of accessing those instead of getters/setters.

Re: Getters/setters generator

2016-12-10 Thread Mike Bierlee via Digitalmars-d-announce
On Sunday, 11 December 2016 at 02:17:18 UTC, Mike Parker wrote: On Saturday, 10 December 2016 at 20:25:05 UTC, Mike Bierlee wrote: On Friday, 9 December 2016 at 10:27:05 UTC, Eugene Wissner wrote: It would generate 2 methods "num": one to set num_ and one to get its value. It would be great

Poodinis (DI framework) 8.0.0 released

2016-12-26 Thread Mike Bierlee via Digitalmars-d-announce
Poodinis is a dependency injection framework for the D programming language. It is heavily inspired by the Spring Framework. New in this release is value injection. Via injectors you can inject value-types such as primitives or structs. Currently a value injector using proper-d is available

Re: Release D 2.101.2

2023-01-02 Thread Mike Bierlee via Digitalmars-d-announce
On Sunday, 1 January 2023 at 06:52:22 UTC, Iain Buclaw wrote: Glad to announce D 2.101.2, ♥ to the 3 contributors. http://dlang.org/download.html This point release fixes a few issues over 2.101.1, see the changelog for more details. http://dlang.org/changelog/2.101.2.html -Iain on behalf