select2_helper 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/javascripts/select2_helper.js.coffee +100 -0
  5. data/app/controllers/select2_controller.rb +25 -0
  6. data/app/models/concerns/select2_concern.rb +26 -0
  7. data/app/views/select2/results.json.jbuilder +5 -0
  8. data/app/views/select2/tags.json.jbuilder +5 -0
  9. data/config/routes.rb +4 -0
  10. data/lib/select2_helper.rb +9 -0
  11. data/lib/select2_helper/errors.rb +7 -0
  12. data/lib/select2_helper/version.rb +3 -0
  13. data/lib/tasks/select2_helper_tasks.rake +4 -0
  14. data/test/dummy/README.rdoc +28 -0
  15. data/test/dummy/Rakefile +6 -0
  16. data/test/dummy/app/assets/javascripts/application.js +15 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +16 -0
  18. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/controllers/pages_controller.rb +4 -0
  21. data/test/dummy/app/controllers/projects_controller.rb +58 -0
  22. data/test/dummy/app/controllers/tasks_controller.rb +58 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/models/project.rb +5 -0
  25. data/test/dummy/app/models/task.rb +5 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/test/dummy/app/views/pages/index.html.erb +37 -0
  28. data/test/dummy/app/views/projects/_form.html.erb +31 -0
  29. data/test/dummy/app/views/projects/edit.html.erb +6 -0
  30. data/test/dummy/app/views/projects/index.html.erb +27 -0
  31. data/test/dummy/app/views/projects/new.html.erb +5 -0
  32. data/test/dummy/app/views/projects/show.html.erb +14 -0
  33. data/test/dummy/app/views/tasks/_form.html.erb +29 -0
  34. data/test/dummy/app/views/tasks/edit.html.erb +6 -0
  35. data/test/dummy/app/views/tasks/index.html.erb +29 -0
  36. data/test/dummy/app/views/tasks/new.html.erb +5 -0
  37. data/test/dummy/app/views/tasks/show.html.erb +19 -0
  38. data/test/dummy/bin/bundle +3 -0
  39. data/test/dummy/bin/rails +4 -0
  40. data/test/dummy/bin/rake +4 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/config/application.rb +26 -0
  43. data/test/dummy/config/boot.rb +5 -0
  44. data/test/dummy/config/database.yml +85 -0
  45. data/test/dummy/config/environment.rb +5 -0
  46. data/test/dummy/config/environments/development.rb +37 -0
  47. data/test/dummy/config/environments/production.rb +83 -0
  48. data/test/dummy/config/environments/test.rb +39 -0
  49. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  50. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  51. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/test/dummy/config/initializers/inflections.rb +16 -0
  53. data/test/dummy/config/initializers/mime_types.rb +4 -0
  54. data/test/dummy/config/initializers/session_store.rb +3 -0
  55. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  56. data/test/dummy/config/locales/en.yml +23 -0
  57. data/test/dummy/config/routes.rb +59 -0
  58. data/test/dummy/config/secrets.yml +22 -0
  59. data/test/dummy/db/migrate/20140527180322_create_projects.rb +10 -0
  60. data/test/dummy/db/migrate/20140527180427_create_tasks.rb +11 -0
  61. data/test/dummy/db/schema.rb +36 -0
  62. data/test/dummy/log/development.log +9895 -0
  63. data/test/dummy/public/404.html +67 -0
  64. data/test/dummy/public/422.html +67 -0
  65. data/test/dummy/public/500.html +66 -0
  66. data/test/dummy/public/favicon.ico +0 -0
  67. data/test/dummy/test/controllers/pages_controller_test.rb +9 -0
  68. data/test/dummy/test/controllers/projects_controller_test.rb +49 -0
  69. data/test/dummy/test/controllers/tasks_controller_test.rb +49 -0
  70. data/test/dummy/test/factories/projects.rb +8 -0
  71. data/test/dummy/test/factories/tasks.rb +9 -0
  72. data/test/dummy/test/fixtures/projects.yml +9 -0
  73. data/test/dummy/test/fixtures/tasks.yml +11 -0
  74. data/test/dummy/test/models/project_test.rb +7 -0
  75. data/test/dummy/test/models/task_test.rb +7 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/142e7fd2c85a87d270e4fd271e945642 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/20a2742a642444d35da6761f661b3fe0 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/25819886b1b5d849b15d78a77bfae37d +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/35fbb4453edc7ae6ac6704f1002f32df +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/44d54dc4f4f5f01ad21b0c3b86be2913 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/47519dd4ec1de6cedccedec8561ab352 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/501a695a5f241c549cac4109a7f21e35 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/574b5665e77ea1b5e37666852db46012 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/59dbe4fb498319628373091eae217b85 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/6670943499444e8b67b53f147c9691c8 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/73214d449277f121ae99674373349b9c +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/74f0b8d7fd1d954cef0b5a6a1d46d4e6 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/86ea3c481cf2fa8c2cbc7736a6d2f578 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/8e83573f6393d13316efb7d02d1ce2f0 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/93ec664048bf1c019655ba77098c83c5 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/9dec80587c00d47a7ef1f8dd7bb35198 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/b45b717a170260b00060c40280c4ed41 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/c4d0bdedab06899031ceb8170acbfda4 +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/d5ff021bac42e2a975828c6d5c347278 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/ded9139cab353ae56b68a46be15a9ced +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/f5a52a7d62f9c8b29b911bab47331da7 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  106. data/test/select2_helper_test.rb +7 -0
  107. data/test/test_helper.rb +15 -0
  108. metadata +315 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class PagesControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class ProjectsControllerTest < ActionController::TestCase
4
+ setup do
5
+ @project = projects(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:projects)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create project" do
20
+ assert_difference('Project.count') do
21
+ post :create, project: { content: @project.content, name: @project.name }
22
+ end
23
+
24
+ assert_redirected_to project_path(assigns(:project))
25
+ end
26
+
27
+ test "should show project" do
28
+ get :show, id: @project
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @project
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update project" do
38
+ patch :update, id: @project, project: { content: @project.content, name: @project.name }
39
+ assert_redirected_to project_path(assigns(:project))
40
+ end
41
+
42
+ test "should destroy project" do
43
+ assert_difference('Project.count', -1) do
44
+ delete :destroy, id: @project
45
+ end
46
+
47
+ assert_redirected_to projects_path
48
+ end
49
+ end
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class TasksControllerTest < ActionController::TestCase
4
+ setup do
5
+ @task = tasks(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:tasks)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create task" do
20
+ assert_difference('Task.count') do
21
+ post :create, task: { description: @task.description, project_id: @task.project_id, status: @task.status }
22
+ end
23
+
24
+ assert_redirected_to task_path(assigns(:task))
25
+ end
26
+
27
+ test "should show task" do
28
+ get :show, id: @task
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @task
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update task" do
38
+ patch :update, id: @task, task: { description: @task.description, project_id: @task.project_id, status: @task.status }
39
+ assert_redirected_to task_path(assigns(:task))
40
+ end
41
+
42
+ test "should destroy task" do
43
+ assert_difference('Task.count', -1) do
44
+ delete :destroy, id: @task
45
+ end
46
+
47
+ assert_redirected_to tasks_path
48
+ end
49
+ end
@@ -0,0 +1,8 @@
1
+ # Read about factories at https://github.com/thoughtbot/factory_girl
2
+
3
+ FactoryGirl.define do
4
+ factory :project do
5
+ name { Faker::Name.title }
6
+ content { Faker::Lorem.paragraph }
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ # Read about factories at https://github.com/thoughtbot/factory_girl
2
+
3
+ FactoryGirl.define do
4
+ factory :task do
5
+ project { Project.order('RANDOM()').first }
6
+ description { Faker::Lorem.paragraph }
7
+ status { Faker::Lorem.sentence }
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ content: MyText
6
+
7
+ two:
8
+ name: MyString
9
+ content: MyText
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ project_id:
5
+ description: MyText
6
+ status: MyString
7
+
8
+ two:
9
+ project_id:
10
+ description: MyText
11
+ status: MyString
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ProjectTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class TaskTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Select2HelperTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Select2Helper
6
+ end
7
+ end