inventorymaster 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b46fc41fbd204bff01b7a94a41d528dc154aca8e
4
- data.tar.gz: a9ab3f2077c84219d9c59a3628ccf5e5109b53ac
3
+ metadata.gz: e416af2714dba608e0d2b5c296acc9bb24f39e51
4
+ data.tar.gz: a15979f3c56218b2120686d295f2247a123220a5
5
5
  SHA512:
6
- metadata.gz: 0b3dd3ac48d9382c1e9f8fe3cbc167cbdb1d7dbf418bcdb332792c8847fbe46ce88ed3c93d17768047ef5f6a27dce207482129c78b59d05af7514a8f930b93d6
7
- data.tar.gz: 8e2af0e6e07d478493115f6934838823f8c37c9a397212359a2beb1341f5b9ddbcbeb9044ad73055295b6a1ae8ec64e79fdd83bbea003acf0f2cffbf0b0217f0
6
+ metadata.gz: 6635be37c2737c3655fb70c48b6a407d134b95b32a5e3510b5e285d87686311bb3cdaf8632b89bc30dc1478afe04d6242a422563af5db6bc4886303ae77e6178
7
+ data.tar.gz: 3d4158d916743b4969899709a7f022a1cd03fbcfdd5d7b0cb6308ef94772d4a34f83b9cac280a53769979bd425e920aceefcb8aed35a1c3773d7acdaf813e539
data/README.rdoc CHANGED
@@ -1,3 +1,36 @@
1
1
  = Inventorymaster
2
2
 
3
- This project rocks and uses MIT-LICENSE.
3
+ This project provide an engine system for basic inventory management.
4
+
5
+ How to use
6
+
7
+ Add to your Gemfile
8
+ gem 'inventorymaster'
9
+
10
+ bundle install
11
+
12
+ after this all migrations inside a engine stay displonible in main application.
13
+
14
+ rake db:migrate
15
+
16
+ Add to your routes file
17
+
18
+ mount Inventorymaster::Engine, :at => '/stok'
19
+
20
+ Aftere this the system is ready
21
+ paste this code in application.html.erb to see and navigate in the app.
22
+
23
+
24
+
25
+ <li><a href="/stok/locations">Locals</a></li>
26
+ <li><a href="/stok/areas">Areas</a></li>
27
+ <li><a href="/stok/manufacturers">Manufactures</a></li>
28
+ <li><a href="/stok/settings">Settings</a></li>
29
+ <li><a href="/stok/products">Products</a></li>
30
+ <li><a href="/stok/transaction_types">Transactions Type</a></li>
31
+
32
+
33
+
34
+ App takes the layout from main app, but this engine uses Bootstrap 3.0.0 layout.
35
+
36
+ Enjoy!!!
@@ -3,7 +3,7 @@ require_dependency "inventorymaster/application_controller"
3
3
  module Inventorymaster
4
4
  class ProductsController < ApplicationController
5
5
  before_action :set_product, only: [:show, :edit, :update, :destroy]
6
- autocomplete Inventorymaster::Product, :name
6
+ #autocomplete Inventorymaster::Product, :name
7
7
  # GET /products
8
8
  def index
9
9
  @products = Product.all.page(params[:page])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inventorymaster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - jcottobboni