db_notes_engine2 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
- YjcwNzk0YjcxYzZiMjg3NzNkNjM5NDhmOTM3NTFmNDhjODFhNTAzMQ==
4
+ M2NjNDQwZTNlZDViODkzMWZjNDA0Y2QxYjdjYmJiNzgzYmVhZTkxZA==
5
5
  data.tar.gz: !binary |-
6
- ZTc5ZWQ4MzczMGRhNDBlMzk4ZGEwMDNkMGRmNjRjNjc2MzdiNzNmMA==
6
+ YTY5YTFjZjNkN2IzMGIxZDVjODEyN2JkMGZmZDZjNGIxZGQ4ODEzMg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NGU5ZWMzNGJiZjIxY2NkYzJkZDIwZDRkNjlhNWNkNzFjNmVlZTA1NWMwNDQ2
10
- Y2Y5ODgxNjBiMjRjNGYwNTNiMjViY2YxOTg3ODA1ZjEyYTQ5MWI1MGNmZjgw
11
- YjZjYThkNTUyOWM3MDBjODNiN2MyZmEzNThmMzk3MzBiMTlmMDE=
9
+ MjE4MzEzYjE0ODc5ZDQyNDBhNmQzMmZkZDQxMTE2ODkwOTQwZThjODI2N2Rj
10
+ MjQyODQyZDNmYTkwNmZjNDVmN2QxM2QzZTcyYWQ2NWI1YTgyMWJiYjQzZmM2
11
+ Zjk5OTcxNTM1ZThjZmE1NjgxZjgwY2YyMzM2N2RjY2M4ZDBlZTk=
12
12
  data.tar.gz: !binary |-
13
- NTllMzY0ZWIwNjEyNGFiNjhiZjIwNDU3ZThjYjRmNjEzZDI2M2U1NDU4ZWUy
14
- NzNmMDQ4N2U2NjU3NDE2ZTBjYzMwMWU0Nzk1YzBmZDhkMzkzYWViNzA1NGZi
15
- YTkyZmI1NzEyYWJmNWVjMWIyNzc4ZmMyNDg4YjI5YTYzZWJjNTg=
13
+ MmNhMTM0MmFiNmU0NWUwMmQ2ZjRmNTJkNmRiNmFkMzVlMjgxM2M2NmVkZGEx
14
+ MTgzOTE4MTg1OGJjOGU5YTAzYjdlYWFhYjE4MDhjNTE4NmFhZjVmMGNiZTI4
15
+ MDUyNGY1YjhjOWRiMWNhOWRiZTc4OTA0MjQ2ODM4MGUxNjI5YmU=
@@ -1,3 +1,3 @@
1
1
  module DbNotesEngine2
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -3342,3 +3342,11 @@ Completed 200 OK in 8ms (Views: 0.0ms | ActiveRecord: 1.0ms)
3342
3342
 
3343
3343
  Started GET "/assets/db_notes_engine2/bootstrap.js" for 127.0.0.1 at 2013-04-29 16:56:31 +0530
3344
3344
  Served asset /db_notes_engine2/bootstrap.js - 304 Not Modified (0ms)
3345
+ Connecting to database specified by database.yml
3346
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3347
+ Migrating to CreateNotes (1)
3348
+  (0.0ms) select sqlite_version(*)
3349
+  (0.0ms) begin transaction
3350
+  (0.0ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "column_name" varchar(255), "note_text" text, "table_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3351
+ SQLite3::SQLException: table "notes" already exists: CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "column_name" varchar(255), "note_text" text, "table_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3352
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: db_notes_engine2
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
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-04-29 00:00:00.000000000 Z
11
+ date: 2013-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -73,8 +73,8 @@ files:
73
73
  - app/models/note.rb
74
74
  - app/views/model_info/DBNotes.html.erb
75
75
  - config/routes.rb
76
- - db/migrate/1_create_notes.rb
77
- - db/migrate/2_create_comments.rb
76
+ - db/migrate/201304291_create_notes.rb
77
+ - db/migrate/201304292_create_comments.rb
78
78
  - lib/db_notes_engine2/engine.rb
79
79
  - lib/db_notes_engine2/version.rb
80
80
  - lib/db_notes_engine2.rb