Dee the DI Container for Rails
Add this line to your application's Gemfile:
gem 'dee-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dee-rails
Write your service provider using generator.
$ rails g dee:service_provider foo
$ vi app/providers/foo_service_provider.rb
class FooServceProvider < Dee::Rails::ServiceProvider
provide do
# Configuration parameter
self['foo.name'] = 'FOO'
# Singleton service
singleton 'foo' do
Foo.new self['foo.name']
end
# Service
factory 'bar' do
Bar.new
end
end
end
You can access services defined in provider using Dee
object.
class FooController < ApplicationController
def show
foo = Dee['foo']
# Some instructions using Foo object
end
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request