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.
- data/README.markdown +10 -10
- data/VERSION +1 -1
- data/demos/rails2/README +243 -0
- data/demos/rails2/Rakefile +10 -0
- data/demos/rails2/app/controllers/application_controller.rb +10 -0
- data/demos/rails2/app/controllers/test_controller.rb +3 -0
- data/demos/rails2/app/helpers/application_helper.rb +3 -0
- data/demos/rails2/app/views/test/index.html.erb +10 -0
- data/demos/rails2/config/boot.rb +110 -0
- data/demos/rails2/config/database.yml +22 -0
- data/demos/rails2/config/environment.rb +42 -0
- data/demos/rails2/config/environments/development.rb +20 -0
- data/demos/rails2/config/environments/production.rb +28 -0
- data/demos/rails2/config/environments/test.rb +28 -0
- data/demos/rails2/config/initializers/backtrace_silencers.rb +7 -0
- data/demos/rails2/config/initializers/inflections.rb +10 -0
- data/demos/rails2/config/initializers/mime_types.rb +5 -0
- data/demos/rails2/config/initializers/new_rails_defaults.rb +21 -0
- data/demos/rails2/config/initializers/session_store.rb +15 -0
- data/demos/rails2/config/locales/en.yml +5 -0
- data/demos/rails2/config/routes.rb +7 -0
- data/demos/rails2/db/development.sqlite3 +0 -0
- data/demos/rails2/db/seeds.rb +7 -0
- data/demos/rails2/doc/README_FOR_APP +2 -0
- data/demos/rails2/log/development.log +90 -0
- data/demos/rails2/log/production.log +0 -0
- data/demos/rails2/log/server.log +0 -0
- data/demos/rails2/log/test.log +0 -0
- data/demos/rails2/public/404.html +30 -0
- data/demos/rails2/public/422.html +30 -0
- data/demos/rails2/public/500.html +30 -0
- data/demos/rails2/public/favicon.ico +0 -0
- data/demos/rails2/public/images/push.jpg +0 -0
- data/demos/rails2/public/images/rails.png +0 -0
- data/demos/rails2/public/images/ruby.jpg +0 -0
- data/demos/rails2/public/images/test.jpg +0 -0
- data/demos/rails2/public/javascripts/application.js +2 -0
- data/demos/rails2/public/javascripts/controls.js +963 -0
- data/demos/rails2/public/javascripts/dragdrop.js +973 -0
- data/demos/rails2/public/javascripts/effects.js +1128 -0
- data/demos/rails2/public/javascripts/prototype.js +4320 -0
- data/demos/rails2/public/javascripts/test.js +3 -0
- data/demos/rails2/public/robots.txt +5 -0
- data/demos/rails2/public/stylesheets/test.css +4 -0
- data/demos/rails2/script/about +4 -0
- data/demos/rails2/script/console +3 -0
- data/demos/rails2/script/dbconsole +3 -0
- data/demos/rails2/script/destroy +3 -0
- data/demos/rails2/script/generate +3 -0
- data/demos/rails2/script/performance/benchmarker +3 -0
- data/demos/rails2/script/performance/profiler +3 -0
- data/demos/rails2/script/plugin +3 -0
- data/demos/rails2/script/runner +3 -0
- data/demos/rails2/script/server +3 -0
- data/demos/rails2/test/performance/browsing_test.rb +9 -0
- data/demos/rails2/test/test_helper.rb +38 -0
- data/demos/rails3/.gitignore +4 -0
- data/demos/rails3/Gemfile +38 -0
- data/demos/rails3/Gemfile.lock +75 -0
- data/demos/rails3/README +256 -0
- data/demos/rails3/Rakefile +7 -0
- data/demos/rails3/app/controllers/application_controller.rb +3 -0
- data/demos/rails3/app/controllers/items_controller.rb +83 -0
- data/demos/rails3/app/helpers/application_helper.rb +2 -0
- data/demos/rails3/app/helpers/items_helper.rb +2 -0
- data/demos/rails3/app/models/item.rb +2 -0
- data/demos/rails3/app/views/items/_form.html.erb +17 -0
- data/demos/rails3/app/views/items/edit.html.erb +6 -0
- data/demos/rails3/app/views/items/index.html.erb +21 -0
- data/demos/rails3/app/views/items/new.html.erb +5 -0
- data/demos/rails3/app/views/items/show.html.erb +5 -0
- data/demos/rails3/app/views/layouts/application.html.erb +14 -0
- data/demos/rails3/config/application.rb +42 -0
- data/demos/rails3/config/boot.rb +13 -0
- data/demos/rails3/config/database.yml +22 -0
- data/demos/rails3/config/environment.rb +5 -0
- data/demos/rails3/config/environments/development.rb +29 -0
- data/demos/rails3/config/environments/production.rb +49 -0
- data/demos/rails3/config/environments/test.rb +35 -0
- data/demos/rails3/config/initializers/backtrace_silencers.rb +7 -0
- data/demos/rails3/config/initializers/inflections.rb +10 -0
- data/demos/rails3/config/initializers/mime_types.rb +5 -0
- data/demos/rails3/config/initializers/secret_token.rb +7 -0
- data/demos/rails3/config/initializers/session_store.rb +8 -0
- data/demos/rails3/config/locales/en.yml +5 -0
- data/demos/rails3/config/routes.rb +61 -0
- data/demos/rails3/config.ru +4 -0
- data/demos/rails3/db/migrate/20101024085925_create_items.rb +12 -0
- data/demos/rails3/db/schema.rb +20 -0
- data/demos/rails3/db/seeds.rb +7 -0
- data/demos/rails3/doc/README_FOR_APP +2 -0
- data/demos/rails3/lib/tasks/.gitkeep +0 -0
- data/demos/rails3/public/404.html +26 -0
- data/demos/rails3/public/422.html +26 -0
- data/demos/rails3/public/500.html +26 -0
- data/demos/rails3/public/favicon.ico +0 -0
- data/demos/rails3/public/images/rails.png +0 -0
- data/demos/rails3/public/javascripts/application.js +2 -0
- data/demos/rails3/public/javascripts/controls.js +965 -0
- data/demos/rails3/public/javascripts/dragdrop.js +974 -0
- data/demos/rails3/public/javascripts/effects.js +1123 -0
- data/demos/rails3/public/javascripts/prototype.js +6001 -0
- data/demos/rails3/public/javascripts/rails.js +175 -0
- data/demos/rails3/public/robots.txt +5 -0
- data/demos/rails3/public/stylesheets/.gitkeep +0 -0
- data/demos/rails3/public/stylesheets/scaffold.css +57 -0
- data/demos/rails3/script/rails +6 -0
- data/demos/rails3/test/fixtures/items.yml +11 -0
- data/demos/rails3/test/functional/items_controller_test.rb +49 -0
- data/demos/rails3/test/performance/browsing_test.rb +9 -0
- data/demos/rails3/test/test_helper.rb +13 -0
- data/demos/rails3/test/unit/helpers/items_helper_test.rb +4 -0
- data/demos/rails3/test/unit/item_test.rb +8 -0
- data/demos/rails3/vendor/plugins/.gitkeep +0 -0
- data/install/juggernaut.js +1 -1
- metadata +121 -12
- data/.specification +0 -92
- data/ROADMAP +0 -13
- data/pkg/pushify-1.0.0.gem +0 -0
- 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,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
|
|
Binary file
|