db_notes_eng 0.0.1

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.
Files changed (108) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/images/db_notes_eng/glyphicons-halflings-white.png +0 -0
  6. data/app/assets/images/db_notes_eng/glyphicons-halflings.png +0 -0
  7. data/app/assets/images/db_notes_eng/profile_b32.png +0 -0
  8. data/app/assets/javascripts/db_notes_eng/bootstrap.js +2276 -0
  9. data/app/assets/javascripts/model_info.js +2 -0
  10. data/app/assets/stylesheets/db_notes_eng/bootstrap-responsive.css +1109 -0
  11. data/app/assets/stylesheets/db_notes_eng/bootstrap.css +6158 -0
  12. data/app/assets/stylesheets/model_info.css +4 -0
  13. data/app/controllers/model_info_controller.rb +169 -0
  14. data/app/helpers/model_info_helper.rb +2 -0
  15. data/app/models/comment.rb +4 -0
  16. data/app/models/note.rb +4 -0
  17. data/app/views/model_info/DBNotes.html.erb +418 -0
  18. data/config/routes.rb +31 -0
  19. data/db/migrate/20130430073401_create_notes.rb +12 -0
  20. data/db/migrate/20130430073442_create_comments.rb +11 -0
  21. data/lib/db_notes_eng/engine.rb +4 -0
  22. data/lib/db_notes_eng/version.rb +3 -0
  23. data/lib/db_notes_eng.rb +4 -0
  24. data/lib/tasks/db_notes_eng_tasks.rake +4 -0
  25. data/test/db_notes_eng_test.rb +7 -0
  26. data/test/dummy/README.rdoc +261 -0
  27. data/test/dummy/Rakefile +7 -0
  28. data/test/dummy/app/assets/javascripts/application.js +15 -0
  29. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  30. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  31. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  32. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  33. data/test/dummy/app/controllers/application_controller.rb +3 -0
  34. data/test/dummy/app/controllers/posts_controller.rb +83 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  37. data/test/dummy/app/models/post.rb +3 -0
  38. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  39. data/test/dummy/app/views/posts/_form.html.erb +29 -0
  40. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  41. data/test/dummy/app/views/posts/index.html.erb +27 -0
  42. data/test/dummy/app/views/posts/new.html.erb +5 -0
  43. data/test/dummy/app/views/posts/show.html.erb +20 -0
  44. data/test/dummy/config/application.rb +59 -0
  45. data/test/dummy/config/boot.rb +10 -0
  46. data/test/dummy/config/database.yml +25 -0
  47. data/test/dummy/config/environment.rb +5 -0
  48. data/test/dummy/config/environments/development.rb +37 -0
  49. data/test/dummy/config/environments/production.rb +67 -0
  50. data/test/dummy/config/environments/test.rb +37 -0
  51. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/dummy/config/initializers/inflections.rb +15 -0
  53. data/test/dummy/config/initializers/mime_types.rb +5 -0
  54. data/test/dummy/config/initializers/secret_token.rb +7 -0
  55. data/test/dummy/config/initializers/session_store.rb +8 -0
  56. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/test/dummy/config/locales/en.yml +5 -0
  58. data/test/dummy/config/routes.rb +61 -0
  59. data/test/dummy/config.ru +4 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20130430074432_create_posts.rb +11 -0
  62. data/test/dummy/db/schema.rb +41 -0
  63. data/test/dummy/log/development.log +930 -0
  64. data/test/dummy/public/404.html +26 -0
  65. data/test/dummy/public/422.html +26 -0
  66. data/test/dummy/public/500.html +25 -0
  67. data/test/dummy/public/favicon.ico +0 -0
  68. data/test/dummy/script/rails +6 -0
  69. data/test/dummy/test/fixtures/posts.yml +11 -0
  70. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  71. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  72. data/test/dummy/test/unit/post_test.rb +7 -0
  73. data/test/dummy/tmp/cache/assets/C3D/0B0/sprockets%2Fa90e1f5537e716291e61838559766d78 +0 -0
  74. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  75. data/test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145 +0 -0
  76. data/test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6 +0 -0
  77. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  78. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  79. data/test/dummy/tmp/cache/assets/CF5/6A0/sprockets%2F1aa7a3f72cf1fd22d8125d93130035c1 +0 -0
  80. data/test/dummy/tmp/cache/assets/CFE/360/sprockets%2Fdad738c4ee7026a9c1471232daa27160 +0 -0
  81. data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  82. data/test/dummy/tmp/cache/assets/D1A/5C0/sprockets%2Fa9d7786d843709f1e0eba4c803b3e926 +0 -0
  83. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  84. data/test/dummy/tmp/cache/assets/D45/A20/sprockets%2F00cc94fb621e90908c612ab75f6c79ff +0 -0
  85. data/test/dummy/tmp/cache/assets/D47/420/sprockets%2Fce79b69cc35dc75d80b184119b548ba5 +0 -0
  86. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  87. data/test/dummy/tmp/cache/assets/D4F/9C0/sprockets%2Fdb040063395de8ff921e67da9c59f7f2 +0 -0
  88. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  89. data/test/dummy/tmp/cache/assets/D6E/5B0/sprockets%2Fe70a8df5eea2403f7f21a0861d7673de +0 -0
  90. data/test/dummy/tmp/cache/assets/D73/520/sprockets%2F0f7e0df9d8e81ff186c2b98e02323a1d +0 -0
  91. data/test/dummy/tmp/cache/assets/D8E/420/sprockets%2Fe206bb01c88abc16f8095dd2bca81a82 +0 -0
  92. data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
  93. data/test/dummy/tmp/cache/assets/DD5/3D0/sprockets%2Fd276ebd7d13e1815e1fb59c87aad6cd7 +0 -0
  94. data/test/dummy/tmp/cache/assets/DD5/C70/sprockets%2Fd6e86b01d2f70ca9839df0b4d7eda75d +0 -0
  95. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  96. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  97. data/test/dummy/tmp/cache/assets/E05/F10/sprockets%2Ffb396321cce1c7ea39cefed54f4a962e +0 -0
  98. data/test/dummy/tmp/cache/assets/E28/F30/sprockets%2F7af5f6afe51edfc7e6cd22b3f0a560e0 +0 -0
  99. data/test/dummy/tmp/pids/server.pid +1 -0
  100. data/test/fixtures/comments.yml +11 -0
  101. data/test/fixtures/notes.yml +13 -0
  102. data/test/functional/model_info_controller_test.rb +9 -0
  103. data/test/integration/navigation_test.rb +10 -0
  104. data/test/test_helper.rb +15 -0
  105. data/test/unit/comment_test.rb +7 -0
  106. data/test/unit/helpers/model_info_helper_test.rb +4 -0
  107. data/test/unit/note_test.rb +7 -0
  108. metadata +274 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby.exe
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ author: MyString
5
+ content: MyText
6
+ when: 2013-04-30 13:14:32
7
+
8
+ two:
9
+ author: MyString
10
+ content: MyText
11
+ when: 2013-04-30 13:14:32
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class PostsControllerTest < ActionController::TestCase
4
+ setup do
5
+ @post = posts(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:posts)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create post" do
20
+ assert_difference('Post.count') do
21
+ post :create, post: { author: @post.author, content: @post.content, when: @post.when }
22
+ end
23
+
24
+ assert_redirected_to post_path(assigns(:post))
25
+ end
26
+
27
+ test "should show post" do
28
+ get :show, id: @post
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @post
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update post" do
38
+ put :update, id: @post, post: { author: @post.author, content: @post.content, when: @post.when }
39
+ assert_redirected_to post_path(assigns(:post))
40
+ end
41
+
42
+ test "should destroy post" do
43
+ assert_difference('Post.count', -1) do
44
+ delete :destroy, id: @post
45
+ end
46
+
47
+ assert_redirected_to posts_path
48
+ end
49
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class PostsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PostTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1 @@
1
+ 12208
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ author: MyString
5
+ comment_text: MyText
6
+ note_id: 1
7
+
8
+ two:
9
+ author: MyString
10
+ comment_text: MyText
11
+ note_id: 1
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ author: MyString
5
+ column_name: MyString
6
+ note_text: MyText
7
+ table_name: MyString
8
+
9
+ two:
10
+ author: MyString
11
+ column_name: MyString
12
+ note_text: MyText
13
+ table_name: MyString
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class ModelInfoControllerTest < ActionController::TestCase
4
+ test "should get DBNotes" do
5
+ get :DBNotes
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class CommentTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class ModelInfoHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class NoteTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
metadata ADDED
@@ -0,0 +1,274 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: db_notes_eng
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - theAcadian
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.13
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.13
27
+ - !ruby/object:Gem::Dependency
28
+ name: IcentrisJira
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Database Notes Engine
56
+ email:
57
+ - sai_ponduru@yahoo.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - app/assets/images/db_notes_eng/glyphicons-halflings-white.png
63
+ - app/assets/images/db_notes_eng/glyphicons-halflings.png
64
+ - app/assets/images/db_notes_eng/profile_b32.png
65
+ - app/assets/javascripts/db_notes_eng/bootstrap.js
66
+ - app/assets/javascripts/model_info.js
67
+ - app/assets/stylesheets/db_notes_eng/bootstrap-responsive.css
68
+ - app/assets/stylesheets/db_notes_eng/bootstrap.css
69
+ - app/assets/stylesheets/model_info.css
70
+ - app/controllers/model_info_controller.rb
71
+ - app/helpers/model_info_helper.rb
72
+ - app/models/comment.rb
73
+ - app/models/note.rb
74
+ - app/views/model_info/DBNotes.html.erb
75
+ - config/routes.rb
76
+ - db/migrate/20130430073401_create_notes.rb
77
+ - db/migrate/20130430073442_create_comments.rb
78
+ - lib/db_notes_eng/engine.rb
79
+ - lib/db_notes_eng/version.rb
80
+ - lib/db_notes_eng.rb
81
+ - lib/tasks/db_notes_eng_tasks.rake
82
+ - MIT-LICENSE
83
+ - Rakefile
84
+ - README.rdoc
85
+ - test/db_notes_eng_test.rb
86
+ - test/dummy/app/assets/javascripts/application.js
87
+ - test/dummy/app/assets/javascripts/posts.js
88
+ - test/dummy/app/assets/stylesheets/application.css
89
+ - test/dummy/app/assets/stylesheets/posts.css
90
+ - test/dummy/app/assets/stylesheets/scaffold.css
91
+ - test/dummy/app/controllers/application_controller.rb
92
+ - test/dummy/app/controllers/posts_controller.rb
93
+ - test/dummy/app/helpers/application_helper.rb
94
+ - test/dummy/app/helpers/posts_helper.rb
95
+ - test/dummy/app/models/post.rb
96
+ - test/dummy/app/views/layouts/application.html.erb
97
+ - test/dummy/app/views/posts/edit.html.erb
98
+ - test/dummy/app/views/posts/index.html.erb
99
+ - test/dummy/app/views/posts/new.html.erb
100
+ - test/dummy/app/views/posts/show.html.erb
101
+ - test/dummy/app/views/posts/_form.html.erb
102
+ - test/dummy/config/application.rb
103
+ - test/dummy/config/boot.rb
104
+ - test/dummy/config/database.yml
105
+ - test/dummy/config/environment.rb
106
+ - test/dummy/config/environments/development.rb
107
+ - test/dummy/config/environments/production.rb
108
+ - test/dummy/config/environments/test.rb
109
+ - test/dummy/config/initializers/backtrace_silencers.rb
110
+ - test/dummy/config/initializers/inflections.rb
111
+ - test/dummy/config/initializers/mime_types.rb
112
+ - test/dummy/config/initializers/secret_token.rb
113
+ - test/dummy/config/initializers/session_store.rb
114
+ - test/dummy/config/initializers/wrap_parameters.rb
115
+ - test/dummy/config/locales/en.yml
116
+ - test/dummy/config/routes.rb
117
+ - test/dummy/config.ru
118
+ - test/dummy/db/development.sqlite3
119
+ - test/dummy/db/migrate/20130430074432_create_posts.rb
120
+ - test/dummy/db/schema.rb
121
+ - test/dummy/log/development.log
122
+ - test/dummy/public/404.html
123
+ - test/dummy/public/422.html
124
+ - test/dummy/public/500.html
125
+ - test/dummy/public/favicon.ico
126
+ - test/dummy/Rakefile
127
+ - test/dummy/README.rdoc
128
+ - test/dummy/script/rails
129
+ - test/dummy/test/fixtures/posts.yml
130
+ - test/dummy/test/functional/posts_controller_test.rb
131
+ - test/dummy/test/unit/helpers/posts_helper_test.rb
132
+ - test/dummy/test/unit/post_test.rb
133
+ - test/dummy/tmp/cache/assets/C3D/0B0/sprockets%2Fa90e1f5537e716291e61838559766d78
134
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
135
+ - test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145
136
+ - test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6
137
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
138
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
139
+ - test/dummy/tmp/cache/assets/CF5/6A0/sprockets%2F1aa7a3f72cf1fd22d8125d93130035c1
140
+ - test/dummy/tmp/cache/assets/CFE/360/sprockets%2Fdad738c4ee7026a9c1471232daa27160
141
+ - test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4
142
+ - test/dummy/tmp/cache/assets/D1A/5C0/sprockets%2Fa9d7786d843709f1e0eba4c803b3e926
143
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
144
+ - test/dummy/tmp/cache/assets/D45/A20/sprockets%2F00cc94fb621e90908c612ab75f6c79ff
145
+ - test/dummy/tmp/cache/assets/D47/420/sprockets%2Fce79b69cc35dc75d80b184119b548ba5
146
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
147
+ - test/dummy/tmp/cache/assets/D4F/9C0/sprockets%2Fdb040063395de8ff921e67da9c59f7f2
148
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
149
+ - test/dummy/tmp/cache/assets/D6E/5B0/sprockets%2Fe70a8df5eea2403f7f21a0861d7673de
150
+ - test/dummy/tmp/cache/assets/D73/520/sprockets%2F0f7e0df9d8e81ff186c2b98e02323a1d
151
+ - test/dummy/tmp/cache/assets/D8E/420/sprockets%2Fe206bb01c88abc16f8095dd2bca81a82
152
+ - test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b
153
+ - test/dummy/tmp/cache/assets/DD5/3D0/sprockets%2Fd276ebd7d13e1815e1fb59c87aad6cd7
154
+ - test/dummy/tmp/cache/assets/DD5/C70/sprockets%2Fd6e86b01d2f70ca9839df0b4d7eda75d
155
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
156
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
157
+ - test/dummy/tmp/cache/assets/E05/F10/sprockets%2Ffb396321cce1c7ea39cefed54f4a962e
158
+ - test/dummy/tmp/cache/assets/E28/F30/sprockets%2F7af5f6afe51edfc7e6cd22b3f0a560e0
159
+ - test/dummy/tmp/pids/server.pid
160
+ - test/fixtures/comments.yml
161
+ - test/fixtures/notes.yml
162
+ - test/functional/model_info_controller_test.rb
163
+ - test/integration/navigation_test.rb
164
+ - test/test_helper.rb
165
+ - test/unit/comment_test.rb
166
+ - test/unit/helpers/model_info_helper_test.rb
167
+ - test/unit/note_test.rb
168
+ homepage: http://psjplearn.blogspot.com
169
+ licenses: []
170
+ metadata: {}
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ! '>='
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - ! '>='
183
+ - !ruby/object:Gem::Version
184
+ version: '0'
185
+ requirements: []
186
+ rubyforge_project:
187
+ rubygems_version: 2.0.3
188
+ signing_key:
189
+ specification_version: 4
190
+ summary: Database Notes Engine
191
+ test_files:
192
+ - test/db_notes_eng_test.rb
193
+ - test/dummy/app/assets/javascripts/application.js
194
+ - test/dummy/app/assets/javascripts/posts.js
195
+ - test/dummy/app/assets/stylesheets/application.css
196
+ - test/dummy/app/assets/stylesheets/posts.css
197
+ - test/dummy/app/assets/stylesheets/scaffold.css
198
+ - test/dummy/app/controllers/application_controller.rb
199
+ - test/dummy/app/controllers/posts_controller.rb
200
+ - test/dummy/app/helpers/application_helper.rb
201
+ - test/dummy/app/helpers/posts_helper.rb
202
+ - test/dummy/app/models/post.rb
203
+ - test/dummy/app/views/layouts/application.html.erb
204
+ - test/dummy/app/views/posts/edit.html.erb
205
+ - test/dummy/app/views/posts/index.html.erb
206
+ - test/dummy/app/views/posts/new.html.erb
207
+ - test/dummy/app/views/posts/show.html.erb
208
+ - test/dummy/app/views/posts/_form.html.erb
209
+ - test/dummy/config/application.rb
210
+ - test/dummy/config/boot.rb
211
+ - test/dummy/config/database.yml
212
+ - test/dummy/config/environment.rb
213
+ - test/dummy/config/environments/development.rb
214
+ - test/dummy/config/environments/production.rb
215
+ - test/dummy/config/environments/test.rb
216
+ - test/dummy/config/initializers/backtrace_silencers.rb
217
+ - test/dummy/config/initializers/inflections.rb
218
+ - test/dummy/config/initializers/mime_types.rb
219
+ - test/dummy/config/initializers/secret_token.rb
220
+ - test/dummy/config/initializers/session_store.rb
221
+ - test/dummy/config/initializers/wrap_parameters.rb
222
+ - test/dummy/config/locales/en.yml
223
+ - test/dummy/config/routes.rb
224
+ - test/dummy/config.ru
225
+ - test/dummy/db/development.sqlite3
226
+ - test/dummy/db/migrate/20130430074432_create_posts.rb
227
+ - test/dummy/db/schema.rb
228
+ - test/dummy/log/development.log
229
+ - test/dummy/public/404.html
230
+ - test/dummy/public/422.html
231
+ - test/dummy/public/500.html
232
+ - test/dummy/public/favicon.ico
233
+ - test/dummy/Rakefile
234
+ - test/dummy/README.rdoc
235
+ - test/dummy/script/rails
236
+ - test/dummy/test/fixtures/posts.yml
237
+ - test/dummy/test/functional/posts_controller_test.rb
238
+ - test/dummy/test/unit/helpers/posts_helper_test.rb
239
+ - test/dummy/test/unit/post_test.rb
240
+ - test/dummy/tmp/cache/assets/C3D/0B0/sprockets%2Fa90e1f5537e716291e61838559766d78
241
+ - test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
242
+ - test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145
243
+ - test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6
244
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
245
+ - test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
246
+ - test/dummy/tmp/cache/assets/CF5/6A0/sprockets%2F1aa7a3f72cf1fd22d8125d93130035c1
247
+ - test/dummy/tmp/cache/assets/CFE/360/sprockets%2Fdad738c4ee7026a9c1471232daa27160
248
+ - test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4
249
+ - test/dummy/tmp/cache/assets/D1A/5C0/sprockets%2Fa9d7786d843709f1e0eba4c803b3e926
250
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
251
+ - test/dummy/tmp/cache/assets/D45/A20/sprockets%2F00cc94fb621e90908c612ab75f6c79ff
252
+ - test/dummy/tmp/cache/assets/D47/420/sprockets%2Fce79b69cc35dc75d80b184119b548ba5
253
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
254
+ - test/dummy/tmp/cache/assets/D4F/9C0/sprockets%2Fdb040063395de8ff921e67da9c59f7f2
255
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
256
+ - test/dummy/tmp/cache/assets/D6E/5B0/sprockets%2Fe70a8df5eea2403f7f21a0861d7673de
257
+ - test/dummy/tmp/cache/assets/D73/520/sprockets%2F0f7e0df9d8e81ff186c2b98e02323a1d
258
+ - test/dummy/tmp/cache/assets/D8E/420/sprockets%2Fe206bb01c88abc16f8095dd2bca81a82
259
+ - test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b
260
+ - test/dummy/tmp/cache/assets/DD5/3D0/sprockets%2Fd276ebd7d13e1815e1fb59c87aad6cd7
261
+ - test/dummy/tmp/cache/assets/DD5/C70/sprockets%2Fd6e86b01d2f70ca9839df0b4d7eda75d
262
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
263
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
264
+ - test/dummy/tmp/cache/assets/E05/F10/sprockets%2Ffb396321cce1c7ea39cefed54f4a962e
265
+ - test/dummy/tmp/cache/assets/E28/F30/sprockets%2F7af5f6afe51edfc7e6cd22b3f0a560e0
266
+ - test/dummy/tmp/pids/server.pid
267
+ - test/fixtures/comments.yml
268
+ - test/fixtures/notes.yml
269
+ - test/functional/model_info_controller_test.rb
270
+ - test/integration/navigation_test.rb
271
+ - test/test_helper.rb
272
+ - test/unit/comment_test.rb
273
+ - test/unit/helpers/model_info_helper_test.rb
274
+ - test/unit/note_test.rb