Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dependency_injection-rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dependency_injection-rails

  • 0.1.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

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')

FAQs

Package last updated on 29 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc