smart_editor 0.0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/smart_editor/application.js +15 -0
  5. data/app/assets/javascripts/smart_editor/editor_images.js +1 -0
  6. data/app/assets/stylesheets/smart_editor/application.css +13 -0
  7. data/app/assets/stylesheets/smart_editor/editor_images.css +4 -0
  8. data/app/controllers/smart_editor/application_controller.rb +4 -0
  9. data/app/controllers/smart_editor/editor_images_controller.rb +41 -0
  10. data/app/helpers/smart_editor/application_helper.rb +4 -0
  11. data/app/helpers/smart_editor/editor_images_helper.rb +4 -0
  12. data/app/models/smart_editor/editor_image.rb +7 -0
  13. data/app/uploaders/file_uploader.rb +55 -0
  14. data/app/views/layouts/smart_editor/application.html.erb +14 -0
  15. data/app/views/smart_editor/editor_images/index.html.erb +4 -0
  16. data/config/routes.rb +7 -0
  17. data/db/migrate/20130101074444_create_smart_editor_editor_images.rb +10 -0
  18. data/lib/generators/smart_editor/smart_editor_generator.rb +18 -0
  19. data/lib/generators/smart_editor/templates/public/smart_editor/SmartEditor2Skin.html +635 -0
  20. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
  21. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
  22. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
  23. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
  24. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/callback.html +32 -0
  25. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
  26. data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
  27. data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea.html +9 -0
  28. data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
  29. data/lib/smart_editor/class_methods.rb +10 -0
  30. data/lib/smart_editor/engine.rb +5 -0
  31. data/lib/smart_editor/form_builder.rb +11 -0
  32. data/lib/smart_editor/version.rb +3 -0
  33. data/lib/smart_editor.rb +18 -0
  34. data/lib/tasks/smart_editor_tasks.rake +4 -0
  35. data/test/dummy/README.rdoc +261 -0
  36. data/test/dummy/Rakefile +7 -0
  37. data/test/dummy/app/assets/javascripts/application.js +16 -0
  38. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  39. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  40. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  41. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  42. data/test/dummy/app/controllers/application_controller.rb +3 -0
  43. data/test/dummy/app/controllers/posts_controller.rb +85 -0
  44. data/test/dummy/app/helpers/application_helper.rb +2 -0
  45. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  46. data/test/dummy/app/models/post.rb +4 -0
  47. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  48. data/test/dummy/app/views/posts/_form.html.erb +30 -0
  49. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  50. data/test/dummy/app/views/posts/index.html.erb +27 -0
  51. data/test/dummy/app/views/posts/new.html.erb +5 -0
  52. data/test/dummy/app/views/posts/show.html.erb +20 -0
  53. data/test/dummy/config/application.rb +59 -0
  54. data/test/dummy/config/boot.rb +10 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +37 -0
  58. data/test/dummy/config/environments/production.rb +67 -0
  59. data/test/dummy/config/environments/test.rb +37 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/inflections.rb +15 -0
  62. data/test/dummy/config/initializers/mime_types.rb +5 -0
  63. data/test/dummy/config/initializers/secret_token.rb +7 -0
  64. data/test/dummy/config/initializers/session_store.rb +8 -0
  65. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/test/dummy/config/locales/en.yml +5 -0
  67. data/test/dummy/config/routes.rb +7 -0
  68. data/test/dummy/config.ru +4 -0
  69. data/test/dummy/db/development.sqlite3 +0 -0
  70. data/test/dummy/db/migrate/20130103085542_create_posts.rb +11 -0
  71. data/test/dummy/db/migrate/20130103090021_create_smart_editor_editor_images.smart_editor.rb +11 -0
  72. data/test/dummy/db/schema.rb +32 -0
  73. data/test/dummy/log/development.log +713 -0
  74. data/test/dummy/public/404.html +26 -0
  75. data/test/dummy/public/422.html +26 -0
  76. data/test/dummy/public/500.html +25 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/dummy/public/smart_editor/SmartEditor2Skin.html +635 -0
  79. data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
  80. data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
  81. data/test/dummy/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
  82. data/test/dummy/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
  83. data/test/dummy/public/smart_editor/popup/quick_photo/callback.html +32 -0
  84. data/test/dummy/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
  85. data/test/dummy/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
  86. data/test/dummy/public/smart_editor/smart_editor2_inputarea.html +9 -0
  87. data/test/dummy/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
  88. data/test/dummy/script/rails +6 -0
  89. data/test/dummy/test/fixtures/posts.yml +11 -0
  90. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  91. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  92. data/test/dummy/test/unit/post_test.rb +7 -0
  93. data/test/dummy/tmp/cache/assets/C39/A20/sprockets%2Fd75302feb7958c52568020a888775667 +0 -0
  94. data/test/dummy/tmp/cache/assets/C8B/9F0/sprockets%2F42090f88c5061f72460d7c83a9bc8990 +0 -0
  95. data/test/dummy/tmp/cache/assets/C8E/A60/sprockets%2F74b1945f4d4a322ab567f73798c32838 +0 -0
  96. data/test/dummy/tmp/cache/assets/CD4/040/sprockets%2F7c241e3470f7210ab843c109c9d68a4b +0 -0
  97. data/test/dummy/tmp/cache/assets/CE3/740/sprockets%2F200278c67b4dde839345d7b018fed561 +0 -0
  98. data/test/dummy/tmp/cache/assets/CEE/680/sprockets%2F6d653ad72aed952816dd79e63c761417 +0 -0
  99. data/test/dummy/tmp/cache/assets/D12/CA0/sprockets%2Fcd507925f6bb1f62170d028ca668ad98 +0 -0
  100. data/test/dummy/tmp/cache/assets/D13/8A0/sprockets%2Fec89fa303e9609b18f50b6de2831433e +0 -0
  101. data/test/dummy/tmp/cache/assets/D6F/A80/sprockets%2F8893ca0d5d16eb3d85c0964bdbbe3381 +0 -0
  102. data/test/dummy/tmp/cache/assets/D86/AF0/sprockets%2Fcfa5f1244012fcd263cee551afe412b2 +0 -0
  103. data/test/dummy/tmp/cache/assets/D92/5A0/sprockets%2Fb0e45a13b900ecbf7011b78bdff2595e +0 -0
  104. data/test/dummy/tmp/cache/assets/D9D/950/sprockets%2F65093fff17b1aa3bed7e0dda53563b79 +0 -0
  105. data/test/dummy/tmp/cache/assets/DF9/8C0/sprockets%2Fc27a71cbee6a5dffdc2534b267b2fa66 +0 -0
  106. data/test/dummy/tmp/cache/assets/E54/F60/sprockets%2Ff1bba5cc065ebbb83addfbba59f82059 +0 -0
  107. data/test/fixtures/smart_editor/editor_images.yml +11 -0
  108. data/test/functional/smart_editor/editor_images_controller_test.rb +9 -0
  109. data/test/integration/navigation_test.rb +10 -0
  110. data/test/smart_editor_test.rb +7 -0
  111. data/test/test_helper.rb +15 -0
  112. data/test/unit/helpers/smart_editor/editor_images_helper_test.rb +6 -0
  113. data/test/unit/smart_editor/editor_image_test.rb +9 -0
  114. data/vendor/assets/images/smart_editor/bg_b1.png +0 -0
  115. data/vendor/assets/images/smart_editor/bg_find_h3.gif +0 -0
  116. data/vendor/assets/images/smart_editor/bg_line1.gif +0 -0
  117. data/vendor/assets/images/smart_editor/bg_quote2.gif +0 -0
  118. data/vendor/assets/images/smart_editor/bg_set.gif +0 -0
  119. data/vendor/assets/images/smart_editor/bg_tool2.gif +0 -0
  120. data/vendor/assets/images/smart_editor/btn_set.png +0 -0
  121. data/vendor/assets/images/smart_editor/bx_set_110302.gif +0 -0
  122. data/vendor/assets/images/smart_editor/editor_guideline_698.gif +0 -0
  123. data/vendor/assets/images/smart_editor/editor_guideline_890.gif +0 -0
  124. data/vendor/assets/images/smart_editor/icon_set.gif +0 -0
  125. data/vendor/assets/images/smart_editor/photoQuickPopup/bg_drag_image.png +0 -0
  126. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_cancel.png +0 -0
  127. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm.png +0 -0
  128. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm2.png +0 -0
  129. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_del.png +0 -0
  130. data/vendor/assets/images/smart_editor/photoQuickPopup/btn_find.png +0 -0
  131. data/vendor/assets/images/smart_editor/text_tool_set.png +0 -0
  132. data/vendor/assets/images/smart_editor/text_tool_set2.png +0 -0
  133. data/vendor/assets/javascripts/smart_editor/HuskyEZCreator.js +133 -0
  134. data/vendor/assets/javascripts/smart_editor/SE2B_Configuration.js +77 -0
  135. data/vendor/assets/javascripts/smart_editor/SE2BasicCreator.js +85 -0
  136. data/vendor/assets/javascripts/smart_editor/hp_SE2M_AttachQuickPhoto.js +106 -0
  137. data/vendor/assets/javascripts/smart_editor/jindo.min.js +12699 -0
  138. data/vendor/assets/javascripts/smart_editor/jindo_component.js +279 -0
  139. data/vendor/assets/javascripts/smart_editor/loader-min.js +120 -0
  140. data/vendor/assets/javascripts/smart_editor.js +21 -0
  141. data/vendor/assets/stylesheets/smart_editor/smart_editor2.css +262 -0
  142. data/vendor/assets/stylesheets/smart_editor/smart_editor2_in.css +20 -0
  143. data/vendor/assets/stylesheets/smart_editor/smart_editor2_items.css +454 -0
  144. data/vendor/assets/stylesheets/smart_editor/smart_editor2_out.css +24 -0
  145. metadata +331 -0
metadata ADDED
@@ -0,0 +1,331 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smart_editor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Younghun Choi
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.9
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.9
30
+ - !ruby/object:Gem::Dependency
31
+ name: carrierwave
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: execjs
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: sqlite3
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: gem to use WYSIWYG editor for rails user
79
+ email: choi0hun@gmail.com
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files: []
83
+ files:
84
+ - app/assets/javascripts/smart_editor/application.js
85
+ - app/assets/javascripts/smart_editor/editor_images.js
86
+ - app/assets/stylesheets/smart_editor/application.css
87
+ - app/assets/stylesheets/smart_editor/editor_images.css
88
+ - app/controllers/smart_editor/application_controller.rb
89
+ - app/controllers/smart_editor/editor_images_controller.rb
90
+ - app/helpers/smart_editor/application_helper.rb
91
+ - app/helpers/smart_editor/editor_images_helper.rb
92
+ - app/models/smart_editor/editor_image.rb
93
+ - app/uploaders/file_uploader.rb
94
+ - app/views/layouts/smart_editor/application.html.erb
95
+ - app/views/smart_editor/editor_images/index.html.erb
96
+ - config/routes.rb
97
+ - db/migrate/20130101074444_create_smart_editor_editor_images.rb
98
+ - lib/generators/smart_editor/smart_editor_generator.rb
99
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/callback.html
100
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader.php
101
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader_html5.php
102
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo.min.js
103
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo_fileUpload.js
104
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html
105
+ - lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js
106
+ - lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea.html
107
+ - lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea_ie8.html
108
+ - lib/generators/smart_editor/templates/public/smart_editor/SmartEditor2Skin.html
109
+ - lib/smart_editor/class_methods.rb
110
+ - lib/smart_editor/engine.rb
111
+ - lib/smart_editor/form_builder.rb
112
+ - lib/smart_editor/version.rb
113
+ - lib/smart_editor.rb
114
+ - lib/tasks/smart_editor_tasks.rake
115
+ - vendor/assets/images/smart_editor/bg_b1.png
116
+ - vendor/assets/images/smart_editor/bg_find_h3.gif
117
+ - vendor/assets/images/smart_editor/bg_line1.gif
118
+ - vendor/assets/images/smart_editor/bg_quote2.gif
119
+ - vendor/assets/images/smart_editor/bg_set.gif
120
+ - vendor/assets/images/smart_editor/bg_tool2.gif
121
+ - vendor/assets/images/smart_editor/btn_set.png
122
+ - vendor/assets/images/smart_editor/bx_set_110302.gif
123
+ - vendor/assets/images/smart_editor/editor_guideline_698.gif
124
+ - vendor/assets/images/smart_editor/editor_guideline_890.gif
125
+ - vendor/assets/images/smart_editor/icon_set.gif
126
+ - vendor/assets/images/smart_editor/photoQuickPopup/bg_drag_image.png
127
+ - vendor/assets/images/smart_editor/photoQuickPopup/btn_cancel.png
128
+ - vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm.png
129
+ - vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm2.png
130
+ - vendor/assets/images/smart_editor/photoQuickPopup/btn_del.png
131
+ - vendor/assets/images/smart_editor/photoQuickPopup/btn_find.png
132
+ - vendor/assets/images/smart_editor/text_tool_set.png
133
+ - vendor/assets/images/smart_editor/text_tool_set2.png
134
+ - vendor/assets/javascripts/smart_editor/hp_SE2M_AttachQuickPhoto.js
135
+ - vendor/assets/javascripts/smart_editor/HuskyEZCreator.js
136
+ - vendor/assets/javascripts/smart_editor/jindo.min.js
137
+ - vendor/assets/javascripts/smart_editor/jindo_component.js
138
+ - vendor/assets/javascripts/smart_editor/loader-min.js
139
+ - vendor/assets/javascripts/smart_editor/SE2B_Configuration.js
140
+ - vendor/assets/javascripts/smart_editor/SE2BasicCreator.js
141
+ - vendor/assets/javascripts/smart_editor.js
142
+ - vendor/assets/stylesheets/smart_editor/smart_editor2.css
143
+ - vendor/assets/stylesheets/smart_editor/smart_editor2_in.css
144
+ - vendor/assets/stylesheets/smart_editor/smart_editor2_items.css
145
+ - vendor/assets/stylesheets/smart_editor/smart_editor2_out.css
146
+ - MIT-LICENSE
147
+ - Rakefile
148
+ - README.rdoc
149
+ - test/dummy/app/assets/javascripts/application.js
150
+ - test/dummy/app/assets/javascripts/posts.js
151
+ - test/dummy/app/assets/stylesheets/application.css
152
+ - test/dummy/app/assets/stylesheets/posts.css
153
+ - test/dummy/app/assets/stylesheets/scaffold.css
154
+ - test/dummy/app/controllers/application_controller.rb
155
+ - test/dummy/app/controllers/posts_controller.rb
156
+ - test/dummy/app/helpers/application_helper.rb
157
+ - test/dummy/app/helpers/posts_helper.rb
158
+ - test/dummy/app/models/post.rb
159
+ - test/dummy/app/views/layouts/application.html.erb
160
+ - test/dummy/app/views/posts/_form.html.erb
161
+ - test/dummy/app/views/posts/edit.html.erb
162
+ - test/dummy/app/views/posts/index.html.erb
163
+ - test/dummy/app/views/posts/new.html.erb
164
+ - test/dummy/app/views/posts/show.html.erb
165
+ - test/dummy/config/application.rb
166
+ - test/dummy/config/boot.rb
167
+ - test/dummy/config/database.yml
168
+ - test/dummy/config/environment.rb
169
+ - test/dummy/config/environments/development.rb
170
+ - test/dummy/config/environments/production.rb
171
+ - test/dummy/config/environments/test.rb
172
+ - test/dummy/config/initializers/backtrace_silencers.rb
173
+ - test/dummy/config/initializers/inflections.rb
174
+ - test/dummy/config/initializers/mime_types.rb
175
+ - test/dummy/config/initializers/secret_token.rb
176
+ - test/dummy/config/initializers/session_store.rb
177
+ - test/dummy/config/initializers/wrap_parameters.rb
178
+ - test/dummy/config/locales/en.yml
179
+ - test/dummy/config/routes.rb
180
+ - test/dummy/config.ru
181
+ - test/dummy/db/development.sqlite3
182
+ - test/dummy/db/migrate/20130103085542_create_posts.rb
183
+ - test/dummy/db/migrate/20130103090021_create_smart_editor_editor_images.smart_editor.rb
184
+ - test/dummy/db/schema.rb
185
+ - test/dummy/log/development.log
186
+ - test/dummy/public/404.html
187
+ - test/dummy/public/422.html
188
+ - test/dummy/public/500.html
189
+ - test/dummy/public/favicon.ico
190
+ - test/dummy/public/smart_editor/popup/quick_photo/callback.html
191
+ - test/dummy/public/smart_editor/popup/quick_photo/FileUploader.php
192
+ - test/dummy/public/smart_editor/popup/quick_photo/FileUploader_html5.php
193
+ - test/dummy/public/smart_editor/popup/quick_photo/jindo.min.js
194
+ - test/dummy/public/smart_editor/popup/quick_photo/jindo_fileUpload.js
195
+ - test/dummy/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html
196
+ - test/dummy/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js
197
+ - test/dummy/public/smart_editor/smart_editor2_inputarea.html
198
+ - test/dummy/public/smart_editor/smart_editor2_inputarea_ie8.html
199
+ - test/dummy/public/smart_editor/SmartEditor2Skin.html
200
+ - test/dummy/Rakefile
201
+ - test/dummy/README.rdoc
202
+ - test/dummy/script/rails
203
+ - test/dummy/test/fixtures/posts.yml
204
+ - test/dummy/test/functional/posts_controller_test.rb
205
+ - test/dummy/test/unit/helpers/posts_helper_test.rb
206
+ - test/dummy/test/unit/post_test.rb
207
+ - test/dummy/tmp/cache/assets/C39/A20/sprockets%2Fd75302feb7958c52568020a888775667
208
+ - test/dummy/tmp/cache/assets/C8B/9F0/sprockets%2F42090f88c5061f72460d7c83a9bc8990
209
+ - test/dummy/tmp/cache/assets/C8E/A60/sprockets%2F74b1945f4d4a322ab567f73798c32838
210
+ - test/dummy/tmp/cache/assets/CD4/040/sprockets%2F7c241e3470f7210ab843c109c9d68a4b
211
+ - test/dummy/tmp/cache/assets/CE3/740/sprockets%2F200278c67b4dde839345d7b018fed561
212
+ - test/dummy/tmp/cache/assets/CEE/680/sprockets%2F6d653ad72aed952816dd79e63c761417
213
+ - test/dummy/tmp/cache/assets/D12/CA0/sprockets%2Fcd507925f6bb1f62170d028ca668ad98
214
+ - test/dummy/tmp/cache/assets/D13/8A0/sprockets%2Fec89fa303e9609b18f50b6de2831433e
215
+ - test/dummy/tmp/cache/assets/D6F/A80/sprockets%2F8893ca0d5d16eb3d85c0964bdbbe3381
216
+ - test/dummy/tmp/cache/assets/D86/AF0/sprockets%2Fcfa5f1244012fcd263cee551afe412b2
217
+ - test/dummy/tmp/cache/assets/D92/5A0/sprockets%2Fb0e45a13b900ecbf7011b78bdff2595e
218
+ - test/dummy/tmp/cache/assets/D9D/950/sprockets%2F65093fff17b1aa3bed7e0dda53563b79
219
+ - test/dummy/tmp/cache/assets/DF9/8C0/sprockets%2Fc27a71cbee6a5dffdc2534b267b2fa66
220
+ - test/dummy/tmp/cache/assets/E54/F60/sprockets%2Ff1bba5cc065ebbb83addfbba59f82059
221
+ - test/fixtures/smart_editor/editor_images.yml
222
+ - test/functional/smart_editor/editor_images_controller_test.rb
223
+ - test/integration/navigation_test.rb
224
+ - test/smart_editor_test.rb
225
+ - test/test_helper.rb
226
+ - test/unit/helpers/smart_editor/editor_images_helper_test.rb
227
+ - test/unit/smart_editor/editor_image_test.rb
228
+ homepage: https://github.com/zerohun/smart_editor_rails
229
+ licenses: []
230
+ post_install_message:
231
+ rdoc_options: []
232
+ require_paths:
233
+ - lib
234
+ required_ruby_version: !ruby/object:Gem::Requirement
235
+ none: false
236
+ requirements:
237
+ - - ! '>='
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ required_rubygems_version: !ruby/object:Gem::Requirement
241
+ none: false
242
+ requirements:
243
+ - - ! '>='
244
+ - !ruby/object:Gem::Version
245
+ version: '0'
246
+ requirements: []
247
+ rubyforge_project:
248
+ rubygems_version: 1.8.24
249
+ signing_key:
250
+ specification_version: 3
251
+ summary: Rails gem to use smart_editor
252
+ test_files:
253
+ - test/dummy/app/assets/javascripts/application.js
254
+ - test/dummy/app/assets/javascripts/posts.js
255
+ - test/dummy/app/assets/stylesheets/application.css
256
+ - test/dummy/app/assets/stylesheets/posts.css
257
+ - test/dummy/app/assets/stylesheets/scaffold.css
258
+ - test/dummy/app/controllers/application_controller.rb
259
+ - test/dummy/app/controllers/posts_controller.rb
260
+ - test/dummy/app/helpers/application_helper.rb
261
+ - test/dummy/app/helpers/posts_helper.rb
262
+ - test/dummy/app/models/post.rb
263
+ - test/dummy/app/views/layouts/application.html.erb
264
+ - test/dummy/app/views/posts/_form.html.erb
265
+ - test/dummy/app/views/posts/edit.html.erb
266
+ - test/dummy/app/views/posts/index.html.erb
267
+ - test/dummy/app/views/posts/new.html.erb
268
+ - test/dummy/app/views/posts/show.html.erb
269
+ - test/dummy/config/application.rb
270
+ - test/dummy/config/boot.rb
271
+ - test/dummy/config/database.yml
272
+ - test/dummy/config/environment.rb
273
+ - test/dummy/config/environments/development.rb
274
+ - test/dummy/config/environments/production.rb
275
+ - test/dummy/config/environments/test.rb
276
+ - test/dummy/config/initializers/backtrace_silencers.rb
277
+ - test/dummy/config/initializers/inflections.rb
278
+ - test/dummy/config/initializers/mime_types.rb
279
+ - test/dummy/config/initializers/secret_token.rb
280
+ - test/dummy/config/initializers/session_store.rb
281
+ - test/dummy/config/initializers/wrap_parameters.rb
282
+ - test/dummy/config/locales/en.yml
283
+ - test/dummy/config/routes.rb
284
+ - test/dummy/config.ru
285
+ - test/dummy/db/development.sqlite3
286
+ - test/dummy/db/migrate/20130103085542_create_posts.rb
287
+ - test/dummy/db/migrate/20130103090021_create_smart_editor_editor_images.smart_editor.rb
288
+ - test/dummy/db/schema.rb
289
+ - test/dummy/log/development.log
290
+ - test/dummy/public/404.html
291
+ - test/dummy/public/422.html
292
+ - test/dummy/public/500.html
293
+ - test/dummy/public/favicon.ico
294
+ - test/dummy/public/smart_editor/popup/quick_photo/callback.html
295
+ - test/dummy/public/smart_editor/popup/quick_photo/FileUploader.php
296
+ - test/dummy/public/smart_editor/popup/quick_photo/FileUploader_html5.php
297
+ - test/dummy/public/smart_editor/popup/quick_photo/jindo.min.js
298
+ - test/dummy/public/smart_editor/popup/quick_photo/jindo_fileUpload.js
299
+ - test/dummy/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html
300
+ - test/dummy/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js
301
+ - test/dummy/public/smart_editor/smart_editor2_inputarea.html
302
+ - test/dummy/public/smart_editor/smart_editor2_inputarea_ie8.html
303
+ - test/dummy/public/smart_editor/SmartEditor2Skin.html
304
+ - test/dummy/Rakefile
305
+ - test/dummy/README.rdoc
306
+ - test/dummy/script/rails
307
+ - test/dummy/test/fixtures/posts.yml
308
+ - test/dummy/test/functional/posts_controller_test.rb
309
+ - test/dummy/test/unit/helpers/posts_helper_test.rb
310
+ - test/dummy/test/unit/post_test.rb
311
+ - test/dummy/tmp/cache/assets/C39/A20/sprockets%2Fd75302feb7958c52568020a888775667
312
+ - test/dummy/tmp/cache/assets/C8B/9F0/sprockets%2F42090f88c5061f72460d7c83a9bc8990
313
+ - test/dummy/tmp/cache/assets/C8E/A60/sprockets%2F74b1945f4d4a322ab567f73798c32838
314
+ - test/dummy/tmp/cache/assets/CD4/040/sprockets%2F7c241e3470f7210ab843c109c9d68a4b
315
+ - test/dummy/tmp/cache/assets/CE3/740/sprockets%2F200278c67b4dde839345d7b018fed561
316
+ - test/dummy/tmp/cache/assets/CEE/680/sprockets%2F6d653ad72aed952816dd79e63c761417
317
+ - test/dummy/tmp/cache/assets/D12/CA0/sprockets%2Fcd507925f6bb1f62170d028ca668ad98
318
+ - test/dummy/tmp/cache/assets/D13/8A0/sprockets%2Fec89fa303e9609b18f50b6de2831433e
319
+ - test/dummy/tmp/cache/assets/D6F/A80/sprockets%2F8893ca0d5d16eb3d85c0964bdbbe3381
320
+ - test/dummy/tmp/cache/assets/D86/AF0/sprockets%2Fcfa5f1244012fcd263cee551afe412b2
321
+ - test/dummy/tmp/cache/assets/D92/5A0/sprockets%2Fb0e45a13b900ecbf7011b78bdff2595e
322
+ - test/dummy/tmp/cache/assets/D9D/950/sprockets%2F65093fff17b1aa3bed7e0dda53563b79
323
+ - test/dummy/tmp/cache/assets/DF9/8C0/sprockets%2Fc27a71cbee6a5dffdc2534b267b2fa66
324
+ - test/dummy/tmp/cache/assets/E54/F60/sprockets%2Ff1bba5cc065ebbb83addfbba59f82059
325
+ - test/fixtures/smart_editor/editor_images.yml
326
+ - test/functional/smart_editor/editor_images_controller_test.rb
327
+ - test/integration/navigation_test.rb
328
+ - test/smart_editor_test.rb
329
+ - test/test_helper.rb
330
+ - test/unit/helpers/smart_editor/editor_images_helper_test.rb
331
+ - test/unit/smart_editor/editor_image_test.rb