README.md in trailblazer-loader-0.0.9 vs README.md in trailblazer-loader-0.1.0
- old
+ new
@@ -191,10 +191,16 @@
```ruby
Trailblazer::Loader.new.() { |file| require_dependency(File.join(Rails.app.root, file)) }
```
-`:concepts_root`
+Per default, Trailblazer-loader will use `app/concepts` as the root path for the file search. Change that with the `:concepts_root` option.
+
+```ruby
+Trailblazer::Loader.new.(concepts_root: "./concepts/") { |file| require_relative(file) }
+```
+
+Note that `:concepts_root` needs a trailing slash.
## Mixing
Note that you're free to mix these styles the way it feels right for your project.