Inventorymaster

This project provide an engine system for basic inventory management.

How to use

Add to your Gemfile gem ‘inventorymaster’

bundle install

after this all migrations inside a engine stay displonible in main application.

rake db:migrate

Add to your routes file

mount Inventorymaster::Engine, :at => ‘/stok’

Aftere this the system is ready paste this code in application.html.erb to see and navigate in the app.

<li><a href="/stok/locations">Locals</a></li>
<li><a href="/stok/areas">Areas</a></li>
<li><a href="/stok/manufacturers">Manufactures</a></li>
<li><a href="/stok/settings">Settings</a></li>
<li><a href="/stok/products">Products</a></li>
<li><a href="/stok/transaction_types">Transactions Type</a></li>

App takes the layout from main app, but this engine uses Bootstrap 3.0.0 layout.

Enjoy!!!