rails_hydration 0.1.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 (64) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +80 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/rails_hydration.js +46 -0
  6. data/app/helpers/rails_hydration/hydration_helper.rb +12 -0
  7. data/lib/rails_hydration.rb +4 -0
  8. data/lib/rails_hydration/engine.rb +5 -0
  9. data/lib/rails_hydration/version.rb +3 -0
  10. data/test/dummy/README.rdoc +261 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +14 -0
  13. data/test/dummy/app/assets/javascripts/post.js +14 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/assets/stylesheets/post.css +4 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/controllers/post_controller.rb +12 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/helpers/post_helper.rb +2 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/test/dummy/app/views/post/show.html.erb +4 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +59 -0
  24. data/test/dummy/config/boot.rb +10 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +67 -0
  29. data/test/dummy/config/environments/test.rb +37 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/inflections.rb +15 -0
  32. data/test/dummy/config/initializers/mime_types.rb +5 -0
  33. data/test/dummy/config/initializers/secret_token.rb +7 -0
  34. data/test/dummy/config/initializers/session_store.rb +8 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/test/dummy/config/locales/en.yml +5 -0
  37. data/test/dummy/config/routes.rb +5 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/log/development.log +665 -0
  40. data/test/dummy/public/404.html +26 -0
  41. data/test/dummy/public/422.html +26 -0
  42. data/test/dummy/public/500.html +25 -0
  43. data/test/dummy/public/favicon.ico +0 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/dummy/test/functional/post_controller_test.rb +7 -0
  46. data/test/dummy/test/unit/helpers/post_helper_test.rb +4 -0
  47. data/test/dummy/tmp/cache/assets/C7A/990/sprockets%2F97814b552e2803f1c02392da86a7f042 +0 -0
  48. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  49. data/test/dummy/tmp/cache/assets/CD9/540/sprockets%2F171a3527ea3ae8a5b8360b9b0364981f +0 -0
  50. data/test/dummy/tmp/cache/assets/CF7/510/sprockets%2Fe4c9f657a03eb67c19f76776e23049b9 +0 -0
  51. data/test/dummy/tmp/cache/assets/D03/6D0/sprockets%2F603ee1f4cb16b0b11627367ce772e18b +0 -0
  52. data/test/dummy/tmp/cache/assets/D05/020/sprockets%2F75d583d8af21000e19c327c2bfd3921e +0 -0
  53. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  54. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  55. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  56. data/test/dummy/tmp/cache/assets/D73/860/sprockets%2F57efcd641a4f06f24e0b64ef86b2179b +0 -0
  57. data/test/dummy/tmp/cache/assets/D7E/730/sprockets%2F13ac1d5209c8e26fef6e779d893bad65 +0 -0
  58. data/test/dummy/tmp/cache/assets/D7F/960/sprockets%2Fba003a30a920e6e3704bd61fbb6d5b3d +0 -0
  59. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  60. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  61. data/test/integration/navigation_test.rb +10 -0
  62. data/test/rails_hydration_test.rb +7 -0
  63. data/test/test_helper.rb +15 -0
  64. metadata +189 -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
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,7 @@
1
+ require 'test_helper'
2
+
3
+ class PostControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class PostHelperTest < ActionView::TestCase
4
+ 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,7 @@
1
+ require 'test_helper'
2
+
3
+ class RailsHydrationTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, RailsHydration
6
+ end
7
+ end
@@ -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
metadata ADDED
@@ -0,0 +1,189 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_hydration
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Nathan Hackley
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-16 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: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Pass data from Ruby to Javascript without writing JS in your .erb view
42
+ files
43
+ email:
44
+ - nathanhackley@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - MIT-LICENSE
50
+ - README.md
51
+ - Rakefile
52
+ - app/assets/javascripts/rails_hydration.js
53
+ - app/helpers/rails_hydration/hydration_helper.rb
54
+ - lib/rails_hydration.rb
55
+ - lib/rails_hydration/engine.rb
56
+ - lib/rails_hydration/version.rb
57
+ - test/dummy/README.rdoc
58
+ - test/dummy/Rakefile
59
+ - test/dummy/app/assets/javascripts/application.js
60
+ - test/dummy/app/assets/javascripts/post.js
61
+ - test/dummy/app/assets/stylesheets/application.css
62
+ - test/dummy/app/assets/stylesheets/post.css
63
+ - test/dummy/app/controllers/application_controller.rb
64
+ - test/dummy/app/controllers/post_controller.rb
65
+ - test/dummy/app/helpers/application_helper.rb
66
+ - test/dummy/app/helpers/post_helper.rb
67
+ - test/dummy/app/views/layouts/application.html.erb
68
+ - test/dummy/app/views/post/show.html.erb
69
+ - test/dummy/config.ru
70
+ - test/dummy/config/application.rb
71
+ - test/dummy/config/boot.rb
72
+ - test/dummy/config/database.yml
73
+ - test/dummy/config/environment.rb
74
+ - test/dummy/config/environments/development.rb
75
+ - test/dummy/config/environments/production.rb
76
+ - test/dummy/config/environments/test.rb
77
+ - test/dummy/config/initializers/backtrace_silencers.rb
78
+ - test/dummy/config/initializers/inflections.rb
79
+ - test/dummy/config/initializers/mime_types.rb
80
+ - test/dummy/config/initializers/secret_token.rb
81
+ - test/dummy/config/initializers/session_store.rb
82
+ - test/dummy/config/initializers/wrap_parameters.rb
83
+ - test/dummy/config/locales/en.yml
84
+ - test/dummy/config/routes.rb
85
+ - test/dummy/db/development.sqlite3
86
+ - test/dummy/log/development.log
87
+ - test/dummy/public/404.html
88
+ - test/dummy/public/422.html
89
+ - test/dummy/public/500.html
90
+ - test/dummy/public/favicon.ico
91
+ - test/dummy/script/rails
92
+ - test/dummy/test/functional/post_controller_test.rb
93
+ - test/dummy/test/unit/helpers/post_helper_test.rb
94
+ - test/dummy/tmp/cache/assets/C7A/990/sprockets%2F97814b552e2803f1c02392da86a7f042
95
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
96
+ - test/dummy/tmp/cache/assets/CD9/540/sprockets%2F171a3527ea3ae8a5b8360b9b0364981f
97
+ - test/dummy/tmp/cache/assets/CF7/510/sprockets%2Fe4c9f657a03eb67c19f76776e23049b9
98
+ - test/dummy/tmp/cache/assets/D03/6D0/sprockets%2F603ee1f4cb16b0b11627367ce772e18b
99
+ - test/dummy/tmp/cache/assets/D05/020/sprockets%2F75d583d8af21000e19c327c2bfd3921e
100
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
101
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
102
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
103
+ - test/dummy/tmp/cache/assets/D73/860/sprockets%2F57efcd641a4f06f24e0b64ef86b2179b
104
+ - test/dummy/tmp/cache/assets/D7E/730/sprockets%2F13ac1d5209c8e26fef6e779d893bad65
105
+ - test/dummy/tmp/cache/assets/D7F/960/sprockets%2Fba003a30a920e6e3704bd61fbb6d5b3d
106
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
107
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
108
+ - test/integration/navigation_test.rb
109
+ - test/rails_hydration_test.rb
110
+ - test/test_helper.rb
111
+ homepage: https://github.com/hackley/rails-hydration
112
+ licenses:
113
+ - MIT
114
+ metadata: {}
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ! '>='
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ! '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubyforge_project:
131
+ rubygems_version: 2.4.5
132
+ signing_key:
133
+ specification_version: 4
134
+ summary: Pass data from Ruby to Javascript the right way
135
+ test_files:
136
+ - test/dummy/app/assets/javascripts/application.js
137
+ - test/dummy/app/assets/javascripts/post.js
138
+ - test/dummy/app/assets/stylesheets/application.css
139
+ - test/dummy/app/assets/stylesheets/post.css
140
+ - test/dummy/app/controllers/application_controller.rb
141
+ - test/dummy/app/controllers/post_controller.rb
142
+ - test/dummy/app/helpers/application_helper.rb
143
+ - test/dummy/app/helpers/post_helper.rb
144
+ - test/dummy/app/views/layouts/application.html.erb
145
+ - test/dummy/app/views/post/show.html.erb
146
+ - test/dummy/config/application.rb
147
+ - test/dummy/config/boot.rb
148
+ - test/dummy/config/database.yml
149
+ - test/dummy/config/environment.rb
150
+ - test/dummy/config/environments/development.rb
151
+ - test/dummy/config/environments/production.rb
152
+ - test/dummy/config/environments/test.rb
153
+ - test/dummy/config/initializers/backtrace_silencers.rb
154
+ - test/dummy/config/initializers/inflections.rb
155
+ - test/dummy/config/initializers/mime_types.rb
156
+ - test/dummy/config/initializers/secret_token.rb
157
+ - test/dummy/config/initializers/session_store.rb
158
+ - test/dummy/config/initializers/wrap_parameters.rb
159
+ - test/dummy/config/locales/en.yml
160
+ - test/dummy/config/routes.rb
161
+ - test/dummy/config.ru
162
+ - test/dummy/db/development.sqlite3
163
+ - test/dummy/log/development.log
164
+ - test/dummy/public/404.html
165
+ - test/dummy/public/422.html
166
+ - test/dummy/public/500.html
167
+ - test/dummy/public/favicon.ico
168
+ - test/dummy/Rakefile
169
+ - test/dummy/README.rdoc
170
+ - test/dummy/script/rails
171
+ - test/dummy/test/functional/post_controller_test.rb
172
+ - test/dummy/test/unit/helpers/post_helper_test.rb
173
+ - test/dummy/tmp/cache/assets/C7A/990/sprockets%2F97814b552e2803f1c02392da86a7f042
174
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
175
+ - test/dummy/tmp/cache/assets/CD9/540/sprockets%2F171a3527ea3ae8a5b8360b9b0364981f
176
+ - test/dummy/tmp/cache/assets/CF7/510/sprockets%2Fe4c9f657a03eb67c19f76776e23049b9
177
+ - test/dummy/tmp/cache/assets/D03/6D0/sprockets%2F603ee1f4cb16b0b11627367ce772e18b
178
+ - test/dummy/tmp/cache/assets/D05/020/sprockets%2F75d583d8af21000e19c327c2bfd3921e
179
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
180
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
181
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
182
+ - test/dummy/tmp/cache/assets/D73/860/sprockets%2F57efcd641a4f06f24e0b64ef86b2179b
183
+ - test/dummy/tmp/cache/assets/D7E/730/sprockets%2F13ac1d5209c8e26fef6e779d893bad65
184
+ - test/dummy/tmp/cache/assets/D7F/960/sprockets%2Fba003a30a920e6e3704bd61fbb6d5b3d
185
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
186
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
187
+ - test/integration/navigation_test.rb
188
+ - test/rails_hydration_test.rb
189
+ - test/test_helper.rb