pushify 1.1.0 → 1.2.0

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 (120) hide show
  1. data/README.markdown +10 -10
  2. data/VERSION +1 -1
  3. data/demos/rails2/README +243 -0
  4. data/demos/rails2/Rakefile +10 -0
  5. data/demos/rails2/app/controllers/application_controller.rb +10 -0
  6. data/demos/rails2/app/controllers/test_controller.rb +3 -0
  7. data/demos/rails2/app/helpers/application_helper.rb +3 -0
  8. data/demos/rails2/app/views/test/index.html.erb +10 -0
  9. data/demos/rails2/config/boot.rb +110 -0
  10. data/demos/rails2/config/database.yml +22 -0
  11. data/demos/rails2/config/environment.rb +42 -0
  12. data/demos/rails2/config/environments/development.rb +20 -0
  13. data/demos/rails2/config/environments/production.rb +28 -0
  14. data/demos/rails2/config/environments/test.rb +28 -0
  15. data/demos/rails2/config/initializers/backtrace_silencers.rb +7 -0
  16. data/demos/rails2/config/initializers/inflections.rb +10 -0
  17. data/demos/rails2/config/initializers/mime_types.rb +5 -0
  18. data/demos/rails2/config/initializers/new_rails_defaults.rb +21 -0
  19. data/demos/rails2/config/initializers/session_store.rb +15 -0
  20. data/demos/rails2/config/locales/en.yml +5 -0
  21. data/demos/rails2/config/routes.rb +7 -0
  22. data/demos/rails2/db/development.sqlite3 +0 -0
  23. data/demos/rails2/db/seeds.rb +7 -0
  24. data/demos/rails2/doc/README_FOR_APP +2 -0
  25. data/demos/rails2/log/development.log +90 -0
  26. data/demos/rails2/log/production.log +0 -0
  27. data/demos/rails2/log/server.log +0 -0
  28. data/demos/rails2/log/test.log +0 -0
  29. data/demos/rails2/public/404.html +30 -0
  30. data/demos/rails2/public/422.html +30 -0
  31. data/demos/rails2/public/500.html +30 -0
  32. data/demos/rails2/public/favicon.ico +0 -0
  33. data/demos/rails2/public/images/push.jpg +0 -0
  34. data/demos/rails2/public/images/rails.png +0 -0
  35. data/demos/rails2/public/images/ruby.jpg +0 -0
  36. data/demos/rails2/public/images/test.jpg +0 -0
  37. data/demos/rails2/public/javascripts/application.js +2 -0
  38. data/demos/rails2/public/javascripts/controls.js +963 -0
  39. data/demos/rails2/public/javascripts/dragdrop.js +973 -0
  40. data/demos/rails2/public/javascripts/effects.js +1128 -0
  41. data/demos/rails2/public/javascripts/prototype.js +4320 -0
  42. data/demos/rails2/public/javascripts/test.js +3 -0
  43. data/demos/rails2/public/robots.txt +5 -0
  44. data/demos/rails2/public/stylesheets/test.css +4 -0
  45. data/demos/rails2/script/about +4 -0
  46. data/demos/rails2/script/console +3 -0
  47. data/demos/rails2/script/dbconsole +3 -0
  48. data/demos/rails2/script/destroy +3 -0
  49. data/demos/rails2/script/generate +3 -0
  50. data/demos/rails2/script/performance/benchmarker +3 -0
  51. data/demos/rails2/script/performance/profiler +3 -0
  52. data/demos/rails2/script/plugin +3 -0
  53. data/demos/rails2/script/runner +3 -0
  54. data/demos/rails2/script/server +3 -0
  55. data/demos/rails2/test/performance/browsing_test.rb +9 -0
  56. data/demos/rails2/test/test_helper.rb +38 -0
  57. data/demos/rails3/.gitignore +4 -0
  58. data/demos/rails3/Gemfile +38 -0
  59. data/demos/rails3/Gemfile.lock +75 -0
  60. data/demos/rails3/README +256 -0
  61. data/demos/rails3/Rakefile +7 -0
  62. data/demos/rails3/app/controllers/application_controller.rb +3 -0
  63. data/demos/rails3/app/controllers/items_controller.rb +83 -0
  64. data/demos/rails3/app/helpers/application_helper.rb +2 -0
  65. data/demos/rails3/app/helpers/items_helper.rb +2 -0
  66. data/demos/rails3/app/models/item.rb +2 -0
  67. data/demos/rails3/app/views/items/_form.html.erb +17 -0
  68. data/demos/rails3/app/views/items/edit.html.erb +6 -0
  69. data/demos/rails3/app/views/items/index.html.erb +21 -0
  70. data/demos/rails3/app/views/items/new.html.erb +5 -0
  71. data/demos/rails3/app/views/items/show.html.erb +5 -0
  72. data/demos/rails3/app/views/layouts/application.html.erb +14 -0
  73. data/demos/rails3/config/application.rb +42 -0
  74. data/demos/rails3/config/boot.rb +13 -0
  75. data/demos/rails3/config/database.yml +22 -0
  76. data/demos/rails3/config/environment.rb +5 -0
  77. data/demos/rails3/config/environments/development.rb +29 -0
  78. data/demos/rails3/config/environments/production.rb +49 -0
  79. data/demos/rails3/config/environments/test.rb +35 -0
  80. data/demos/rails3/config/initializers/backtrace_silencers.rb +7 -0
  81. data/demos/rails3/config/initializers/inflections.rb +10 -0
  82. data/demos/rails3/config/initializers/mime_types.rb +5 -0
  83. data/demos/rails3/config/initializers/secret_token.rb +7 -0
  84. data/demos/rails3/config/initializers/session_store.rb +8 -0
  85. data/demos/rails3/config/locales/en.yml +5 -0
  86. data/demos/rails3/config/routes.rb +61 -0
  87. data/demos/rails3/config.ru +4 -0
  88. data/demos/rails3/db/migrate/20101024085925_create_items.rb +12 -0
  89. data/demos/rails3/db/schema.rb +20 -0
  90. data/demos/rails3/db/seeds.rb +7 -0
  91. data/demos/rails3/doc/README_FOR_APP +2 -0
  92. data/demos/rails3/lib/tasks/.gitkeep +0 -0
  93. data/demos/rails3/public/404.html +26 -0
  94. data/demos/rails3/public/422.html +26 -0
  95. data/demos/rails3/public/500.html +26 -0
  96. data/demos/rails3/public/favicon.ico +0 -0
  97. data/demos/rails3/public/images/rails.png +0 -0
  98. data/demos/rails3/public/javascripts/application.js +2 -0
  99. data/demos/rails3/public/javascripts/controls.js +965 -0
  100. data/demos/rails3/public/javascripts/dragdrop.js +974 -0
  101. data/demos/rails3/public/javascripts/effects.js +1123 -0
  102. data/demos/rails3/public/javascripts/prototype.js +6001 -0
  103. data/demos/rails3/public/javascripts/rails.js +175 -0
  104. data/demos/rails3/public/robots.txt +5 -0
  105. data/demos/rails3/public/stylesheets/.gitkeep +0 -0
  106. data/demos/rails3/public/stylesheets/scaffold.css +57 -0
  107. data/demos/rails3/script/rails +6 -0
  108. data/demos/rails3/test/fixtures/items.yml +11 -0
  109. data/demos/rails3/test/functional/items_controller_test.rb +49 -0
  110. data/demos/rails3/test/performance/browsing_test.rb +9 -0
  111. data/demos/rails3/test/test_helper.rb +13 -0
  112. data/demos/rails3/test/unit/helpers/items_helper_test.rb +4 -0
  113. data/demos/rails3/test/unit/item_test.rb +8 -0
  114. data/demos/rails3/vendor/plugins/.gitkeep +0 -0
  115. data/install/juggernaut.js +1 -1
  116. metadata +121 -12
  117. data/.specification +0 -92
  118. data/ROADMAP +0 -13
  119. data/pkg/pushify-1.0.0.gem +0 -0
  120. data/spec/css_push_spec.rb +0 -7
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
7
+ # Major.create(:name => 'Daley', :city => cities.first)
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,90 @@
1
+ # Logfile created on Thu Jan 20 02:35:24 -0600 2011
2
+
3
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:03:33) [GET]
4
+ Rendering test/index
5
+ Completed in 23ms (View: 22, DB: 0) | 200 OK [http://localhost/]
6
+
7
+
8
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:17:09) [GET]
9
+ Rendering test/index
10
+ Completed in 15ms (View: 14, DB: 0) | 200 OK [http://localhost/]
11
+
12
+
13
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:17:36) [GET]
14
+ Rendering test/index
15
+ Completed in 14ms (View: 13, DB: 0) | 200 OK [http://localhost/]
16
+
17
+
18
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:20:00) [GET]
19
+ Rendering test/index
20
+ Completed in 14ms (View: 13, DB: 0) | 200 OK [http://localhost/]
21
+
22
+
23
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:20:02) [GET]
24
+ Rendering test/index
25
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
26
+
27
+
28
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:20:02) [GET]
29
+ Rendering test/index
30
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
31
+
32
+
33
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:20:02) [GET]
34
+ Rendering test/index
35
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
36
+
37
+
38
+ Processing TestController#index (for 127.0.0.1 at 2011-01-20 03:20:03) [GET]
39
+ Rendering test/index
40
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
41
+
42
+
43
+ Processing TestController#index (for 127.0.0.1 at 2011-01-25 22:00:38) [GET]
44
+ Rendering test/index
45
+ Completed in 32ms (View: 31, DB: 0) | 200 OK [http://localhost/]
46
+
47
+
48
+ Processing TestController#index (for 127.0.0.1 at 2011-01-25 22:02:18) [GET]
49
+ Rendering test/index
50
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
51
+
52
+
53
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:06:52) [GET]
54
+ Rendering test/index
55
+ Completed in 528ms (View: 339, DB: 0) | 200 OK [http://localhost/]
56
+
57
+
58
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:09:32) [GET]
59
+ Rendering test/index
60
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
61
+
62
+
63
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:09:38) [GET]
64
+ Rendering test/index
65
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
66
+
67
+
68
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:09:46) [GET]
69
+ Rendering test/index
70
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
71
+
72
+
73
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:09:52) [GET]
74
+ Rendering test/index
75
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
76
+
77
+
78
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:10:00) [GET]
79
+ Rendering test/index
80
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
81
+
82
+
83
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:10:44) [GET]
84
+ Rendering test/index
85
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
86
+
87
+
88
+ Processing TestController#index (for 127.0.0.1 at 2011-01-29 17:14:22) [GET]
89
+ Rendering test/index
90
+ Completed in 2ms (View: 1, DB: 0) | 200 OK [http://localhost/]
File without changes
File without changes
File without changes
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The page you were looking for doesn't exist (404)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/404.html -->
25
+ <div class="dialog">
26
+ <h1>The page you were looking for doesn't exist.</h1>
27
+ <p>You may have mistyped the address or the page may have moved.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The change you wanted was rejected (422)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/422.html -->
25
+ <div class="dialog">
26
+ <h1>The change you wanted was rejected.</h1>
27
+ <p>Maybe you tried to change something you didn't have access to.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>We're sorry, but something went wrong (500)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/500.html -->
25
+ <div class="dialog">
26
+ <h1>We're sorry, but something went wrong.</h1>
27
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
28
+ </div>
29
+ </body>
30
+ </html>
File without changes
Binary file
Binary file
Binary file
@@ -0,0 +1,2 @@
1
+ // Place your application-specific JavaScript functions and classes here
2
+ // This file is automatically included by javascript_include_tag :defaults