No longer mention Bazel's --python_path=/usr/bin/python3 arg in the documentation, it's no longer required.
1 file changed
tree: 40d8a8b3edeae09eac780d6764126033dcaad74f
  1. cmake-modules/
  2. configuration/
  3. examples/
  4. extras/
  5. include/
  6. src/
  7. test_package/
  8. tests/
  9. .clang-format
  10. .gitignore
  11. .travis.yml
  12. appveyor.yml
  13. BUILD
  14. CMakeLists.txt
  15. conanfile.py
  16. CONTRIBUTING.md
  17. COPYING
  18. README.md
README.md

Build Status Build status Coverity Scan Status CII Best Practices

Fruit is a dependency injection framework for C++, loosely inspired by the Guice framework for Java. It uses C++ metaprogramming together with some C++11 features to detect most injection problems at compile-time. It allows to split the implementation code in “components” (aka modules) that can be assembled to form other components. From a component with no requirements it's then possible to create an injector, that provides an instance of the interfaces exposed by the component.

See the wiki for more information, including installation instructions, tutorials and reference documentation.