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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZGM3NjgzOTdlM2E1YTc5YzYxN2VlOTkxNmRjNTEzODdmODJmNTcwZA==
4
+ MTQyOGZkMTMyZGJiMTg1OWJjNjg2YTAwN2M2MGE4OWQ5MmUxYWViYQ==
5
5
  data.tar.gz: !binary |-
6
- MmJjMTIxMTVlOGI4Y2IzZDEyM2FlNWRmOTllODZhZWFlNzMyN2QwMg==
6
+ NWVjMzE1N2FmZjcwNWIxZjMwM2Y0YzRiZjI5ZTNjMjA4NzVlNDA0Mg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YzQ0MGVkZmMwNWNlMDEwOTI2OWUxZmU2NGVhMjAyOGZjMWJkMzAwOTgwYTIz
10
- ZTQyMjIzMzMxYTY4YWMxMzJmMzc5N2M5ZTliMDkxYmY2M2I5Mzk1ZDNlNGFm
11
- MzY1YWY4NzEyZWUzNDgyZDBlYjRlYTZjYjliZmVjZmU1Mzk4MWU=
9
+ MzJlYmIwMjdmYmIyODRjOWRiOTY3NDQxMmQ0OGVmY2FjZjY3MzZmOTMyMWEz
10
+ ZDRiNDIxNTlmZGFmOGQzMTE4Y2VlMjRjMzJiN2M3ZjY2ZjQwZWJkZTdlNDc2
11
+ NDUwOWJhZjM1MjFiNWJiMDJhZjhkYjdmNTdlNzM1MjAwMGFiMjM=
12
12
  data.tar.gz: !binary |-
13
- NmVjOWJjYjAyZDdkMmY3ZWJjZGNhZmNhNzYzMDYyZTQ4NTJkYWY3ZDhlYmMw
14
- MmE1MjI3MjI3OGE1NjIxMDdkYWQ0OTY5ZDJkMWQyNDgxNTliNzRmY2JmY2M5
15
- ZGJlOTc2YTgzY2FlYzRhNjllYTE3MmUwMTdiY2M1OWQ0OWM3MzI=
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
+
@@ -1,3 +1,3 @@
1
1
  module DbNotesEng
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: db_notes_eng
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
  - theAcadian