Repository is archived
No commit activity in last 3 years
No release in over 3 years
A Rails wrapper for a fully customizable Dependency injection system
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Dependency Injection for Rails

DependencyInjectionRails adds a helper method, called container, to access to your ruby dependency injection container

Installation

Just add the gem to your Gemfile

gem 'dependency_injection-rails'

Or simply install it using rubygems:

gem install dependency_injection-rails

Usage

In a classic application simply require the helper, and start using it:

class ProductsController < ApplicationController
  def create
    @trendings = container.get('awesome_service').find_trending
  end

  # The rest of your controller code goes here...
end

Configuration path

By default it will try to load config/services.yml configuration file, but if your configuration file is stored in another place, you can easily change it in an initializer:

DependencyInjectionRails.services_path = Rails.root.join('config'. 'anther_name.yml')