rails_ember_templates 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +16 -0
  4. data/Rakefile +32 -0
  5. data/lib/rails_ember_templates/engine.rb +20 -0
  6. data/lib/rails_ember_templates/template.rb +111 -0
  7. data/lib/rails_ember_templates/version.rb +3 -0
  8. data/lib/rails_ember_templates.rb +6 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +18 -0
  12. data/test/dummy/app/assets/javascripts/templates/application.hbs +1 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/controllers/default_controller.rb +5 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/bin/bundle +3 -0
  19. data/test/dummy/bin/rails +4 -0
  20. data/test/dummy/bin/rake +4 -0
  21. data/test/dummy/config/application.rb +23 -0
  22. data/test/dummy/config/boot.rb +5 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +29 -0
  26. data/test/dummy/config/environments/production.rb +80 -0
  27. data/test/dummy/config/environments/test.rb +36 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/test/dummy/config/initializers/inflections.rb +16 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/secret_token.rb +12 -0
  33. data/test/dummy/config/initializers/session_store.rb +3 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +23 -0
  36. data/test/dummy/config/routes.rb +3 -0
  37. data/test/dummy/config.ru +4 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/log/development.log +158 -0
  40. data/test/dummy/public/404.html +58 -0
  41. data/test/dummy/public/422.html +58 -0
  42. data/test/dummy/public/500.html +57 -0
  43. data/test/dummy/public/favicon.ico +0 -0
  44. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/3289d9e35a604d5e815722647b5930e8 +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/337d223e9569f801279500576532f92a +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/3974934d26aa882e57bec8f4cafe1c07 +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/407f795c955a463d5ff329a0d5d07138 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/59a2c7240a2c065bc645a6923baf3ee1 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/85e607ee98efeb30cd09a8c91e13a952 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/9c8261dceca8912e60f5f00521ef6933 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/a16a456a86e5dc3d3892cb8c4c747a2a +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/b52ab7fc1acb2181ee71cdbd75178bab +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/d240b6153981624cbcd5aa9542ca24a2 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/e1658f6900cfc0ba388976a2fd25f94f +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/e44f5ebcd8f42995512e64b96b63c9cf +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/e8aa57b28c86586b8b7344feb891c43f +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/fc989a04090f315502a167c3de74e24e +0 -0
  64. data/test/dummy/vendor/assets/javascripts/ember.js +41803 -0
  65. data/test/dummy/vendor/assets/javascripts/handlebars.js +2746 -0
  66. data/test/rails_ember_templates_test.rb +7 -0
  67. data/test/test_helper.rb +15 -0
  68. metadata +210 -0
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root to: 'default#empty'
3
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
@@ -0,0 +1,158 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:30:44 +0200
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/ori/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/rails-c0a783610f5c/railties/lib/rails/templates/rails/welcome/index.html.erb (8.0ms)
6
+ Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:32:22 +0200
10
+ Processing by DefaultController#empty as HTML
11
+ Rendered text template within layouts/application (0.0ms)
12
+ Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:32:22 +0200
16
+
17
+
18
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:32:22 +0200
19
+
20
+
21
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:34:42 +0200
22
+ Processing by DefaultController#empty as HTML
23
+ Rendered text template within layouts/application (0.0ms)
24
+ Completed 200 OK in 69ms (Views: 68.8ms | ActiveRecord: 0.0ms)
25
+
26
+
27
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:34:42 +0200
28
+
29
+
30
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:34:42 +0200
31
+
32
+
33
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:34:42 +0200
34
+
35
+
36
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:35:42 +0200
37
+ Processing by DefaultController#empty as HTML
38
+ Rendered text template within layouts/application (0.0ms)
39
+ Completed 200 OK in 172ms (Views: 171.4ms | ActiveRecord: 0.0ms)
40
+
41
+
42
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:35:42 +0200
43
+
44
+
45
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:35:42 +0200
46
+
47
+
48
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:35:42 +0200
49
+
50
+
51
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:36:10 +0200
52
+ Processing by DefaultController#empty as HTML
53
+ Rendered text template within layouts/application (0.0ms)
54
+ Completed 500 Internal Server Error in 15ms
55
+
56
+ ActionView::Template::Error (couldn't find file 'jquery'
57
+ (in /Users/ori/Code/rails_ember_templates/test/dummy/app/assets/javascripts/application.js:13)):
58
+ 3: <head>
59
+ 4: <title>Dummy</title>
60
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
61
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
62
+ 7: <%= csrf_meta_tags %>
63
+ 8: </head>
64
+ 9: <body>
65
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2112551877885566436_70247748010660'
66
+ app/controllers/default_controller.rb:3:in `empty'
67
+
68
+
69
+ Rendered /Users/ori/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/rails-c0a783610f5c/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
70
+ Rendered /Users/ori/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/rails-c0a783610f5c/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
71
+ Rendered /Users/ori/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/rails-c0a783610f5c/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.5ms)
72
+
73
+
74
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:36:39 +0200
75
+ Processing by DefaultController#empty as HTML
76
+ Rendered text template within layouts/application (0.0ms)
77
+ Completed 200 OK in 78ms (Views: 77.7ms | ActiveRecord: 0.0ms)
78
+
79
+
80
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:36:39 +0200
81
+
82
+
83
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-13 01:36:39 +0200
84
+
85
+
86
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:36:39 +0200
87
+
88
+
89
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:36:39 +0200
90
+
91
+
92
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
93
+ Processing by DefaultController#empty as HTML
94
+ Rendered text template within layouts/application (0.0ms)
95
+ Completed 200 OK in 70ms (Views: 70.1ms | ActiveRecord: 0.0ms)
96
+
97
+
98
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
99
+
100
+
101
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
102
+
103
+
104
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
105
+
106
+
107
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
108
+
109
+
110
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:38:12 +0200
111
+
112
+
113
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
114
+ Processing by DefaultController#empty as HTML
115
+ Rendered text template within layouts/application (0.0ms)
116
+ Completed 200 OK in 144ms (Views: 144.0ms | ActiveRecord: 0.0ms)
117
+
118
+
119
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
120
+
121
+
122
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
123
+
124
+
125
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
126
+
127
+
128
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
129
+
130
+
131
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
132
+
133
+
134
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:08 +0200
135
+
136
+
137
+ Started GET "/" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
138
+ Processing by DefaultController#empty as HTML
139
+ Rendered text template within layouts/application (0.0ms)
140
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
141
+
142
+
143
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
144
+
145
+
146
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
147
+
148
+
149
+ Started GET "/assets/handlebars.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
150
+
151
+
152
+ Started GET "/assets/templates/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
153
+
154
+
155
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
156
+
157
+
158
+ Started GET "/assets/ember.js?body=1" for 127.0.0.1 at 2014-03-13 01:42:27 +0200
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes