db_notes_eng 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.rdoc +23 -1
- data/lib/db_notes_eng/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MTQyOGZkMTMyZGJiMTg1OWJjNjg2YTAwN2M2MGE4OWQ5MmUxYWViYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWVjMzE1N2FmZjcwNWIxZjMwM2Y0YzRiZjI5ZTNjMjA4NzVlNDA0Mg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MzJlYmIwMjdmYmIyODRjOWRiOTY3NDQxMmQ0OGVmY2FjZjY3MzZmOTMyMWEz
|
10
|
+
ZDRiNDIxNTlmZGFmOGQzMTE4Y2VlMjRjMzJiN2M3ZjY2ZjQwZWJkZTdlNDc2
|
11
|
+
NDUwOWJhZjM1MjFiNWJiMDJhZjhkYjdmNTdlNzM1MjAwMGFiMjM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTYyNWIyMjBkODUxMDRmODc4OTFmYWQxMDRjNmM0ZDc3ZjdjODFkYzEwOTc1
|
14
|
+
NTU4OTllNmVjM2JmZjc5YmM4ODEwNmNhZDdjYjcwMTI4MzdlZDNjNTE1YmNm
|
15
|
+
MzFkMzM4MGRmMDBmMTdhYWNjMWI1MzhjMzMxZTE4NWEzZWMxZWQ=
|
data/README.rdoc
CHANGED
@@ -1,3 +1,25 @@
|
|
1
1
|
= DbNotesEng
|
2
2
|
|
3
|
-
This project rocks and uses MIT-LICENSE.
|
3
|
+
This project rocks and uses MIT-LICENSE.
|
4
|
+
|
5
|
+
= WHAT THIS ENGINE CREATES
|
6
|
+
|
7
|
+
1. Creates a page with URL = /DBNotes
|
8
|
+
2. Creates 2 tables - NOTES & COMMENTS
|
9
|
+
These 2 tables are used to store the documentation in the form notes & comments for each column
|
10
|
+
|
11
|
+
= STEPS to include it
|
12
|
+
|
13
|
+
1. include gem in gemfile
|
14
|
+
gem 'db_notes_eng'
|
15
|
+
|
16
|
+
2. Run migrations - to create NOTES & COMMENTS tables
|
17
|
+
|
18
|
+
Below command adds the migrations present in the gem to your application:
|
19
|
+
rake db_notes_eng_engine:install:migrations
|
20
|
+
|
21
|
+
Then run -
|
22
|
+
rake db:migrate
|
23
|
+
|
24
|
+
|
25
|
+
|
data/lib/db_notes_eng/version.rb
CHANGED