Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ my_registry[:greeter] {"Dolly"} # => "Hello Dolly"
my_registry.register_feature(my_species)
```

Namespaced Features respect their anscesters with regard to code access. For instance ```Feature#enabled?``` will check not only the referenced Feature, but traverse all ancestors in its namespace. If any of the referenced Feature's anscestors is disabled, then the referenced Feature is considered disabled -- regardless of whether ```is_enabled``` is set to ```true``` or ```false```.
Namespaced Features respect their ancestors with regard to code access. For instance ```Feature#enabled?``` will check not only the referenced Feature, but traverse all ancestors in its namespace. If any of the referenced Feature's ancestors is disabled, then the referenced Feature is considered disabled -- regardless of whether ```is_enabled``` is set to ```true``` or ```false```.

For instance, extending the ```species``` Feature example above:

Expand Down