Does dependency injection exist in Rails?

前端 未结 5 955
挽巷
挽巷 2020-12-24 10:24

Does the fact that Rails have an MVC approach mean that is has dependency injection?

Or is there a reason that we don\'t talk about dependency injection in Rails?

5条回答
  •  囚心锁ツ
    2020-12-24 11:04

    I use this IoC https://github.com/alexeypetrushin/micon in my Web Framework, most of time it stays hidden and silently solves issues of dependencies and component initializtion that otherwise should be solved manually.

    You can see it in action here http://ruby-lang.info (this site powered with Rad, my web framework https://github.com/alexeypetrushin/rad_core ).

提交回复
热议问题