uploader 2.0.2 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (263) hide show
  1. data/README.rdoc +55 -57
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/app/helpers/uploader_helper.rb +3 -3
  5. data/app/views/uploads/_swf_javascript.html.erb +9 -6
  6. data/app/views/uploads/_swf_upload.html.erb +2 -2
  7. data/app/views/uploads/_uploadify.html.erb +3 -3
  8. data/{locales → config/locales}/ar.yml +0 -0
  9. data/{locales → config/locales}/bg.yml +0 -0
  10. data/{locales → config/locales}/ca.yml +0 -0
  11. data/{locales → config/locales}/cs.yml +0 -0
  12. data/{locales → config/locales}/da.yml +0 -0
  13. data/{locales → config/locales}/de.yml +0 -0
  14. data/{locales → config/locales}/el.yml +0 -0
  15. data/{locales → config/locales}/en.yml +0 -0
  16. data/{locales → config/locales}/es.yml +0 -0
  17. data/{locales → config/locales}/et.yml +0 -0
  18. data/{locales → config/locales}/fa.yml +2 -2
  19. data/{locales → config/locales}/fi.yml +0 -0
  20. data/{locales → config/locales}/fr.yml +0 -0
  21. data/{locales → config/locales}/gl.yml +0 -0
  22. data/{locales → config/locales}/hi.yml +1 -1
  23. data/{locales → config/locales}/hr.yml +0 -0
  24. data/{locales → config/locales}/hu.yml +0 -0
  25. data/{locales → config/locales}/id.yml +1 -1
  26. data/{locales → config/locales}/it.yml +0 -0
  27. data/{locales → config/locales}/iw.yml +0 -0
  28. data/{locales → config/locales}/ja.yml +0 -0
  29. data/{locales → config/locales}/ko.yml +2 -2
  30. data/{locales → config/locales}/lt.yml +0 -0
  31. data/{locales → config/locales}/lv.yml +0 -0
  32. data/{locales → config/locales}/mt.yml +0 -0
  33. data/{locales → config/locales}/nl.yml +0 -0
  34. data/{locales → config/locales}/no.yml +0 -0
  35. data/{locales → config/locales}/pl.yml +0 -0
  36. data/{locales → config/locales}/pt-PT.yml +0 -0
  37. data/{locales → config/locales}/ro.yml +0 -0
  38. data/{locales → config/locales}/ru.yml +0 -0
  39. data/{locales → config/locales}/sk.yml +0 -0
  40. data/{locales → config/locales}/sl.yml +0 -0
  41. data/{locales → config/locales}/sq.yml +0 -0
  42. data/{locales → config/locales}/sr.yml +0 -0
  43. data/{locales → config/locales}/sv.yml +0 -0
  44. data/{locales → config/locales}/th.yml +1 -1
  45. data/{locales → config/locales}/tl.yml +0 -0
  46. data/{locales → config/locales}/tr.yml +0 -0
  47. data/{locales → config/locales}/uk.yml +0 -0
  48. data/{locales → config/locales}/vi.yml +2 -2
  49. data/{locales → config/locales}/zh-CN.yml +0 -0
  50. data/{locales → config/locales}/zh-TW.yml +0 -0
  51. data/{locales → config/locales}/zh.yml +0 -0
  52. data/config/routes.rb +8 -0
  53. data/lib/tasks/uploader.rake +22 -0
  54. data/lib/uploader/config.rb +65 -0
  55. data/lib/uploader/engine.rb +19 -0
  56. data/lib/uploader/models/upload.rb +229 -0
  57. data/lib/uploader.rb +4 -2
  58. data/test/{rails_root → rails_test}/.gitignore +0 -0
  59. data/test/{rails_root → rails_test}/.rake_tasks +0 -0
  60. data/test/rails_test/Gemfile +21 -0
  61. data/{Gemfile.lock → test/rails_test/Gemfile.lock} +21 -1
  62. data/test/rails_test/README +256 -0
  63. data/test/{rails_root → rails_test}/Rakefile +2 -7
  64. data/test/{rails_root → rails_test}/app/controllers/application_controller.rb +0 -0
  65. data/test/rails_test/app/controllers/default_controller.rb +18 -0
  66. data/test/{rails_root → rails_test}/app/controllers/uploads_controller.rb +5 -2
  67. data/test/{rails_root → rails_test}/app/models/.keep +0 -0
  68. data/test/rails_test/app/models/upload.rb +38 -0
  69. data/test/{rails_root → rails_test}/app/models/user.rb +0 -0
  70. data/test/{rails_root → rails_test}/app/views/default/index.html.erb +11 -1
  71. data/test/rails_test/app/views/default/uploadify.html.erb +27 -0
  72. data/test/{rails_root → rails_test}/app/views/layouts/application.html.erb +2 -2
  73. data/test/{rails_root → rails_test}/config/amazon_s3.yml +0 -0
  74. data/test/{rails_root → rails_test}/config/application.rb +6 -12
  75. data/test/rails_test/config/boot.rb +13 -0
  76. data/test/{rails_root → rails_test}/config/database.yml +3 -11
  77. data/test/rails_test/config/environment.rb +5 -0
  78. data/test/rails_test/config/environments/development.rb +26 -0
  79. data/test/rails_test/config/environments/production.rb +49 -0
  80. data/test/rails_test/config/environments/test.rb +35 -0
  81. data/test/{rails_root → rails_test}/config/global_config.yml +0 -0
  82. data/test/{rails_root → rails_test}/config/initializers/backtrace_silencers.rb +0 -0
  83. data/test/{rails_root → rails_test}/config/initializers/inflections.rb +2 -2
  84. data/test/{rails_root → rails_test}/config/initializers/mime_types.rb +0 -0
  85. data/test/{rails_root → rails_test}/config/initializers/s3_credentials.rb +1 -1
  86. data/test/{rails_root → rails_test}/config/initializers/secret_token.rb +1 -1
  87. data/test/rails_test/config/initializers/session_store.rb +8 -0
  88. data/test/rails_test/config/locales/en.yml +5 -0
  89. data/test/rails_test/config/routes.rb +13 -0
  90. data/test/rails_test/config.ru +4 -0
  91. data/test/{rails_root → rails_test}/db/.keep +0 -0
  92. data/test/{rails_root → rails_test}/db/migrate/20090517040220_create_uploads.rb +0 -0
  93. data/test/{rails_root → rails_test}/db/migrate/20090602041838_create_users.rb +0 -0
  94. data/test/rails_test/db/seeds.rb +7 -0
  95. data/test/rails_test/doc/README_FOR_APP +2 -0
  96. data/test/{rails_root → rails_test}/features/step_definitions/webrat_steps.rb +0 -0
  97. data/test/{rails_root → rails_test}/features/support/env.rb +0 -0
  98. data/test/{rails_root → rails_test}/lib/daemons/amazonaws.rb +0 -0
  99. data/test/{rails_root/public/favicon.ico → rails_test/lib/tasks/.gitkeep} +0 -0
  100. data/test/rails_test/public/404.html +26 -0
  101. data/test/rails_test/public/422.html +26 -0
  102. data/test/rails_test/public/500.html +26 -0
  103. data/test/{rails_root/public/stylesheets/.keep → rails_test/public/favicon.ico} +0 -0
  104. data/test/{rails_root → rails_test}/public/images/file_icons/excel.gif +0 -0
  105. data/test/{rails_root → rails_test}/public/images/file_icons/file.gif +0 -0
  106. data/test/{rails_root → rails_test}/public/images/file_icons/file.png +0 -0
  107. data/test/{rails_root → rails_test}/public/images/file_icons/file_aac.gif +0 -0
  108. data/test/{rails_root → rails_test}/public/images/file_icons/file_ai.gif +0 -0
  109. data/test/{rails_root → rails_test}/public/images/file_icons/file_avi.gif +0 -0
  110. data/test/{rails_root → rails_test}/public/images/file_icons/file_bin.gif +0 -0
  111. data/test/{rails_root → rails_test}/public/images/file_icons/file_bmp.gif +0 -0
  112. data/test/{rails_root → rails_test}/public/images/file_icons/file_cue.gif +0 -0
  113. data/test/{rails_root → rails_test}/public/images/file_icons/file_divx.gif +0 -0
  114. data/test/{rails_root → rails_test}/public/images/file_icons/file_doc.gif +0 -0
  115. data/test/{rails_root → rails_test}/public/images/file_icons/file_eps.gif +0 -0
  116. data/test/{rails_root → rails_test}/public/images/file_icons/file_flac.gif +0 -0
  117. data/test/{rails_root → rails_test}/public/images/file_icons/file_flv.gif +0 -0
  118. data/test/{rails_root → rails_test}/public/images/file_icons/file_gif.gif +0 -0
  119. data/test/{rails_root → rails_test}/public/images/file_icons/file_html.gif +0 -0
  120. data/test/{rails_root → rails_test}/public/images/file_icons/file_ical.gif +0 -0
  121. data/test/{rails_root → rails_test}/public/images/file_icons/file_indd.gif +0 -0
  122. data/test/{rails_root → rails_test}/public/images/file_icons/file_inx.gif +0 -0
  123. data/test/{rails_root → rails_test}/public/images/file_icons/file_iso.gif +0 -0
  124. data/test/{rails_root → rails_test}/public/images/file_icons/file_jpg.gif +0 -0
  125. data/test/{rails_root → rails_test}/public/images/file_icons/file_mov.gif +0 -0
  126. data/test/{rails_root → rails_test}/public/images/file_icons/file_mp3.gif +0 -0
  127. data/test/{rails_root → rails_test}/public/images/file_icons/file_mpg.gif +0 -0
  128. data/test/{rails_root → rails_test}/public/images/file_icons/file_pdf.gif +0 -0
  129. data/test/{rails_root → rails_test}/public/images/file_icons/file_php.gif +0 -0
  130. data/test/{rails_root → rails_test}/public/images/file_icons/file_png.gif +0 -0
  131. data/test/{rails_root → rails_test}/public/images/file_icons/file_pps.gif +0 -0
  132. data/test/{rails_root → rails_test}/public/images/file_icons/file_ppt.gif +0 -0
  133. data/test/{rails_root → rails_test}/public/images/file_icons/file_psd.gif +0 -0
  134. data/test/{rails_root → rails_test}/public/images/file_icons/file_qxd.gif +0 -0
  135. data/test/{rails_root → rails_test}/public/images/file_icons/file_qxp.gif +0 -0
  136. data/test/{rails_root → rails_test}/public/images/file_icons/file_raw.gif +0 -0
  137. data/test/{rails_root → rails_test}/public/images/file_icons/file_rtf.gif +0 -0
  138. data/test/{rails_root → rails_test}/public/images/file_icons/file_svg.gif +0 -0
  139. data/test/{rails_root → rails_test}/public/images/file_icons/file_tif.gif +0 -0
  140. data/test/{rails_root → rails_test}/public/images/file_icons/file_txt.gif +0 -0
  141. data/test/{rails_root → rails_test}/public/images/file_icons/file_vcf.gif +0 -0
  142. data/test/{rails_root → rails_test}/public/images/file_icons/file_wav.gif +0 -0
  143. data/test/{rails_root → rails_test}/public/images/file_icons/file_wma.gif +0 -0
  144. data/test/{rails_root → rails_test}/public/images/file_icons/file_xls.gif +0 -0
  145. data/test/{rails_root → rails_test}/public/images/file_icons/file_xml.gif +0 -0
  146. data/test/{rails_root → rails_test}/public/images/file_icons/mp3.gif +0 -0
  147. data/test/{rails_root → rails_test}/public/images/file_icons/pdf.gif +0 -0
  148. data/test/{rails_root → rails_test}/public/images/file_icons/pdf.png +0 -0
  149. data/test/{rails_root → rails_test}/public/images/file_icons/text.gif +0 -0
  150. data/test/{rails_root → rails_test}/public/images/file_icons/text.png +0 -0
  151. data/test/{rails_root → rails_test}/public/images/file_icons/word.gif +0 -0
  152. data/test/rails_test/public/images/rails.png +0 -0
  153. data/test/{rails_root/public/images → rails_test/public/images/swfupload}/SWFUploadButton.png +0 -0
  154. data/test/{rails_root/public/images → rails_test/public/images/swfupload}/cancelbutton.gif +0 -0
  155. data/test/{rails_root → rails_test}/public/images/uploadify/cancel.png +0 -0
  156. data/test/{rails_root → rails_test}/public/javascripts/application.js +0 -0
  157. data/test/{rails_root → rails_test}/public/javascripts/controls.js +75 -73
  158. data/test/{rails_root → rails_test}/public/javascripts/dragdrop.js +171 -169
  159. data/test/{rails_root → rails_test}/public/javascripts/effects.js +180 -177
  160. data/test/{rails_root/public/javascripts/jquery/jquery.js → rails_test/public/javascripts/jquery/jquery-1.4.2.min.js} +0 -0
  161. data/test/{rails_root/public/javascripts/jquery/jquery-ui.js → rails_test/public/javascripts/jquery/jquery-ui-1.8.4.custom.min.js} +0 -0
  162. data/test/{rails_root → rails_test}/public/javascripts/jquery/jquery.uploadify.min.js +0 -0
  163. data/test/rails_test/public/javascripts/prototype.js +6001 -0
  164. data/test/rails_test/public/javascripts/rails.js +175 -0
  165. data/test/{rails_root → rails_test}/public/javascripts/swf/swfobject.js +0 -0
  166. data/test/{rails_root → rails_test}/public/javascripts/swfupload/fileprogress.js +0 -0
  167. data/test/{rails_root → rails_test}/public/javascripts/swfupload/handlers.js +0 -0
  168. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.cookies.js +0 -0
  169. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.js +0 -0
  170. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.proxy.js +0 -0
  171. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.queue.js +0 -0
  172. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.speed.js +0 -0
  173. data/test/{rails_root → rails_test}/public/javascripts/swfupload/swfupload.swfobject.js +0 -0
  174. data/test/rails_test/public/robots.txt +5 -0
  175. data/test/{rails_root/test/functional/.keep → rails_test/public/stylesheets/.gitkeep} +0 -0
  176. data/test/{rails_root → rails_test}/public/stylesheets/swfupload.css +0 -0
  177. data/test/{rails_root → rails_test}/public/stylesheets/uploadify.css +0 -0
  178. data/test/{rails_root → rails_test}/public/swf/expressInstall.swf +0 -0
  179. data/test/{rails_root → rails_test}/public/swf/swfupload.swf +0 -0
  180. data/test/{rails_root → rails_test}/public/swf/swfupload_fp9.swf +0 -0
  181. data/test/{rails_root → rails_test}/public/swf/uploadify.swf +0 -0
  182. data/test/rails_test/script/rails +6 -0
  183. data/test/{rails_root → rails_test}/test/factories.rb +1 -1
  184. data/test/{rails_root → rails_test}/test/fixtures/files/5k.png +0 -0
  185. data/test/{rails_root → rails_test}/test/fixtures/files/IT'sUPPERCASE!AND WeIRD.JPG +0 -0
  186. data/test/rails_test/test/fixtures/rails.png +0 -0
  187. data/test/{rails_root/test → rails_test/test/fixtures}/test.doc +0 -0
  188. data/test/{rails_root/test → rails_test/test/fixtures}/test.pdf +0 -0
  189. data/test/rails_test/test/fixtures/test.txt +1 -0
  190. data/test/{rails_root/test → rails_test/test/fixtures}/test.xls +0 -0
  191. data/test/{rails_root/test/integration → rails_test/test/functional}/.keep +0 -0
  192. data/test/{rails_root → rails_test}/test/functional/default_controller_test.rb +0 -0
  193. data/test/{rails_root → rails_test}/test/functional/uploads_controller_test.rb +0 -0
  194. data/test/{rails_root/test/mocks/development → rails_test/test/integration}/.keep +0 -0
  195. data/test/rails_test/test/performance/browsing_test.rb +9 -0
  196. data/test/{rails_root → rails_test}/test/shoulda_macros/paperclip.rb +0 -0
  197. data/test/rails_test/test/test_helper.rb +25 -0
  198. data/test/{rails_root/test/mocks/test → rails_test/test/unit}/.keep +0 -0
  199. data/test/{rails_root → rails_test}/test/unit/upload_test.rb +9 -18
  200. data/test/{rails_root/test/unit/.keep → rails_test/vendor/plugins/.gitkeep} +0 -0
  201. data/uploader.gemspec +225 -255
  202. metadata +228 -258
  203. data/Gemfile +0 -13
  204. data/config/uploader_routes.rb +0 -3
  205. data/lib/active_record/acts/uploader_upload.rb +0 -279
  206. data/lib/uploader/initialize_routes.rb +0 -8
  207. data/lib/uploader/tasks.rb +0 -42
  208. data/rails/init.rb +0 -38
  209. data/tasks/rails.rake +0 -2
  210. data/test/rails_root/Capfile +0 -3
  211. data/test/rails_root/app/controllers/default_controller.rb +0 -12
  212. data/test/rails_root/app/models/upload.rb +0 -55
  213. data/test/rails_root/app/views/default/uploadify.html.erb +0 -17
  214. data/test/rails_root/config/boot.rb +0 -109
  215. data/test/rails_root/config/environment.rb +0 -29
  216. data/test/rails_root/config/environments/development.rb +0 -19
  217. data/test/rails_root/config/environments/production.rb +0 -1
  218. data/test/rails_root/config/environments/test.rb +0 -27
  219. data/test/rails_root/config/initializers/requires.rb +0 -13
  220. data/test/rails_root/config/initializers/session_store.rb +0 -8
  221. data/test/rails_root/config/initializers/uploader.rb +0 -11
  222. data/test/rails_root/config/routes.rb +0 -13
  223. data/test/rails_root/db/development.sqlite3 +0 -0
  224. data/test/rails_root/db/schema.rb +0 -47
  225. data/test/rails_root/db/test.sqlite3 +0 -0
  226. data/test/rails_root/public/.htaccess +0 -40
  227. data/test/rails_root/public/404.html +0 -30
  228. data/test/rails_root/public/422.html +0 -30
  229. data/test/rails_root/public/500.html +0 -30
  230. data/test/rails_root/public/dispatch.rb +0 -10
  231. data/test/rails_root/public/images/rails.png +0 -0
  232. data/test/rails_root/public/images/swfupload/SWFUploadButton.png +0 -0
  233. data/test/rails_root/public/images/swfupload/cancelbutton.gif +0 -0
  234. data/test/rails_root/public/javascripts/builder.js +0 -136
  235. data/test/rails_root/public/javascripts/jquery/jquery.easing.js +0 -1
  236. data/test/rails_root/public/javascripts/jquery/jquery.fancybox.js +0 -9
  237. data/test/rails_root/public/javascripts/jquery/jquery.form.js +0 -637
  238. data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +0 -2
  239. data/test/rails_root/public/javascripts/jquery/jquery.tips.js +0 -69
  240. data/test/rails_root/public/javascripts/jquery/jrails.js +0 -1
  241. data/test/rails_root/public/javascripts/prototype.js +0 -4225
  242. data/test/rails_root/public/javascripts/scriptaculous.js +0 -58
  243. data/test/rails_root/public/javascripts/slider.js +0 -277
  244. data/test/rails_root/public/javascripts/sound.js +0 -60
  245. data/test/rails_root/public/robots.txt +0 -1
  246. data/test/rails_root/script/about +0 -3
  247. data/test/rails_root/script/breakpointer +0 -3
  248. data/test/rails_root/script/console +0 -3
  249. data/test/rails_root/script/create_project.rb +0 -52
  250. data/test/rails_root/script/cucumber +0 -7
  251. data/test/rails_root/script/dbconsole +0 -3
  252. data/test/rails_root/script/destroy +0 -3
  253. data/test/rails_root/script/generate +0 -3
  254. data/test/rails_root/script/performance/benchmarker +0 -3
  255. data/test/rails_root/script/performance/profiler +0 -3
  256. data/test/rails_root/script/performance/request +0 -3
  257. data/test/rails_root/script/plugin +0 -3
  258. data/test/rails_root/script/process/inspector +0 -3
  259. data/test/rails_root/script/process/reaper +0 -3
  260. data/test/rails_root/script/process/spawner +0 -3
  261. data/test/rails_root/script/runner +0 -3
  262. data/test/rails_root/script/server +0 -3
  263. data/test/rails_root/test/test_helper.rb +0 -26
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uploader
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
- - 2
7
+ - 3
8
8
  - 0
9
- - 2
10
- version: 2.0.2
9
+ - 0
10
+ version: 3.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-09-03 00:00:00 -06:00
20
+ date: 2010-09-08 00:00:00 -06:00
21
21
  default_executable:
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
@@ -87,8 +87,6 @@ extra_rdoc_files:
87
87
  - TODO
88
88
  files:
89
89
  - .gitignore
90
- - Gemfile
91
- - Gemfile.lock
92
90
  - MIT-LICENSE
93
91
  - README.rdoc
94
92
  - Rakefile
@@ -99,60 +97,61 @@ files:
99
97
  - app/views/uploads/_swf_javascript.html.erb
100
98
  - app/views/uploads/_swf_upload.html.erb
101
99
  - app/views/uploads/_uploadify.html.erb
102
- - config/uploader_routes.rb
100
+ - config/locales/ar.yml
101
+ - config/locales/bg.yml
102
+ - config/locales/ca.yml
103
+ - config/locales/cs.yml
104
+ - config/locales/da.yml
105
+ - config/locales/de.yml
106
+ - config/locales/el.yml
107
+ - config/locales/en.yml
108
+ - config/locales/es.yml
109
+ - config/locales/et.yml
110
+ - config/locales/fa.yml
111
+ - config/locales/fi.yml
112
+ - config/locales/fr.yml
113
+ - config/locales/gl.yml
114
+ - config/locales/hi.yml
115
+ - config/locales/hr.yml
116
+ - config/locales/hu.yml
117
+ - config/locales/id.yml
118
+ - config/locales/it.yml
119
+ - config/locales/iw.yml
120
+ - config/locales/ja.yml
121
+ - config/locales/ko.yml
122
+ - config/locales/lt.yml
123
+ - config/locales/lv.yml
124
+ - config/locales/mt.yml
125
+ - config/locales/nl.yml
126
+ - config/locales/no.yml
127
+ - config/locales/pl.yml
128
+ - config/locales/pt-PT.yml
129
+ - config/locales/ro.yml
130
+ - config/locales/ru.yml
131
+ - config/locales/sk.yml
132
+ - config/locales/sl.yml
133
+ - config/locales/sq.yml
134
+ - config/locales/sr.yml
135
+ - config/locales/sv.yml
136
+ - config/locales/th.yml
137
+ - config/locales/tl.yml
138
+ - config/locales/tr.yml
139
+ - config/locales/uk.yml
140
+ - config/locales/vi.yml
141
+ - config/locales/zh-CN.yml
142
+ - config/locales/zh-TW.yml
143
+ - config/locales/zh.yml
144
+ - config/routes.rb
103
145
  - db/migrate/20090517040220_create_uploads.rb
104
- - lib/active_record/acts/uploader_upload.rb
105
146
  - lib/daemons/amazonaws.rb
147
+ - lib/tasks/uploader.rake
106
148
  - lib/uploader.rb
149
+ - lib/uploader/config.rb
150
+ - lib/uploader/engine.rb
107
151
  - lib/uploader/exceptions.rb
108
- - lib/uploader/initialize_routes.rb
109
152
  - lib/uploader/middleware/flash_session_cookie_middleware.rb
110
153
  - lib/uploader/mime_type_groups.rb
111
- - lib/uploader/tasks.rb
112
- - locales/ar.yml
113
- - locales/bg.yml
114
- - locales/ca.yml
115
- - locales/cs.yml
116
- - locales/da.yml
117
- - locales/de.yml
118
- - locales/el.yml
119
- - locales/en.yml
120
- - locales/es.yml
121
- - locales/et.yml
122
- - locales/fa.yml
123
- - locales/fi.yml
124
- - locales/fr.yml
125
- - locales/gl.yml
126
- - locales/hi.yml
127
- - locales/hr.yml
128
- - locales/hu.yml
129
- - locales/id.yml
130
- - locales/it.yml
131
- - locales/iw.yml
132
- - locales/ja.yml
133
- - locales/ko.yml
134
- - locales/lt.yml
135
- - locales/lv.yml
136
- - locales/mt.yml
137
- - locales/nl.yml
138
- - locales/no.yml
139
- - locales/pl.yml
140
- - locales/pt-PT.yml
141
- - locales/ro.yml
142
- - locales/ru.yml
143
- - locales/sk.yml
144
- - locales/sl.yml
145
- - locales/sq.yml
146
- - locales/sr.yml
147
- - locales/sv.yml
148
- - locales/th.yml
149
- - locales/tl.yml
150
- - locales/tr.yml
151
- - locales/uk.yml
152
- - locales/vi.yml
153
- - locales/zh-CN.yml
154
- - locales/zh-TW.yml
155
- - locales/zh.yml
154
+ - lib/uploader/models/upload.rb
156
155
  - public/images/file_icons/excel.gif
157
156
  - public/images/file_icons/file.gif
158
157
  - public/images/file_icons/file.png
@@ -220,176 +219,149 @@ files:
220
219
  - public/swf/swfupload.swf
221
220
  - public/swf/swfupload_fp9.swf
222
221
  - public/swf/uploadify.swf
223
- - rails/init.rb
224
- - tasks/rails.rake
225
- - test/rails_root/.gitignore
226
- - test/rails_root/.rake_tasks
227
- - test/rails_root/Capfile
228
- - test/rails_root/Rakefile
229
- - test/rails_root/app/controllers/application_controller.rb
230
- - test/rails_root/app/controllers/default_controller.rb
231
- - test/rails_root/app/controllers/uploads_controller.rb
232
- - test/rails_root/app/models/.keep
233
- - test/rails_root/app/models/upload.rb
234
- - test/rails_root/app/models/user.rb
235
- - test/rails_root/app/views/default/index.html.erb
236
- - test/rails_root/app/views/default/uploadify.html.erb
237
- - test/rails_root/app/views/layouts/application.html.erb
238
- - test/rails_root/config/amazon_s3.yml
239
- - test/rails_root/config/application.rb
240
- - test/rails_root/config/boot.rb
241
- - test/rails_root/config/database.yml
242
- - test/rails_root/config/environment.rb
243
- - test/rails_root/config/environments/development.rb
244
- - test/rails_root/config/environments/production.rb
245
- - test/rails_root/config/environments/test.rb
246
- - test/rails_root/config/global_config.yml
247
- - test/rails_root/config/initializers/backtrace_silencers.rb
248
- - test/rails_root/config/initializers/inflections.rb
249
- - test/rails_root/config/initializers/mime_types.rb
250
- - test/rails_root/config/initializers/requires.rb
251
- - test/rails_root/config/initializers/s3_credentials.rb
252
- - test/rails_root/config/initializers/secret_token.rb
253
- - test/rails_root/config/initializers/session_store.rb
254
- - test/rails_root/config/initializers/uploader.rb
255
- - test/rails_root/config/routes.rb
256
- - test/rails_root/db/.keep
257
- - test/rails_root/db/development.sqlite3
258
- - test/rails_root/db/migrate/20090517040220_create_uploads.rb
259
- - test/rails_root/db/migrate/20090602041838_create_users.rb
260
- - test/rails_root/db/schema.rb
261
- - test/rails_root/db/test.sqlite3
262
- - test/rails_root/features/step_definitions/webrat_steps.rb
263
- - test/rails_root/features/support/env.rb
264
- - test/rails_root/lib/daemons/amazonaws.rb
265
- - test/rails_root/public/.htaccess
266
- - test/rails_root/public/404.html
267
- - test/rails_root/public/422.html
268
- - test/rails_root/public/500.html
269
- - test/rails_root/public/dispatch.rb
270
- - test/rails_root/public/favicon.ico
271
- - test/rails_root/public/images/SWFUploadButton.png
272
- - test/rails_root/public/images/cancelbutton.gif
273
- - test/rails_root/public/images/file_icons/excel.gif
274
- - test/rails_root/public/images/file_icons/file.gif
275
- - test/rails_root/public/images/file_icons/file.png
276
- - test/rails_root/public/images/file_icons/file_aac.gif
277
- - test/rails_root/public/images/file_icons/file_ai.gif
278
- - test/rails_root/public/images/file_icons/file_avi.gif
279
- - test/rails_root/public/images/file_icons/file_bin.gif
280
- - test/rails_root/public/images/file_icons/file_bmp.gif
281
- - test/rails_root/public/images/file_icons/file_cue.gif
282
- - test/rails_root/public/images/file_icons/file_divx.gif
283
- - test/rails_root/public/images/file_icons/file_doc.gif
284
- - test/rails_root/public/images/file_icons/file_eps.gif
285
- - test/rails_root/public/images/file_icons/file_flac.gif
286
- - test/rails_root/public/images/file_icons/file_flv.gif
287
- - test/rails_root/public/images/file_icons/file_gif.gif
288
- - test/rails_root/public/images/file_icons/file_html.gif
289
- - test/rails_root/public/images/file_icons/file_ical.gif
290
- - test/rails_root/public/images/file_icons/file_indd.gif
291
- - test/rails_root/public/images/file_icons/file_inx.gif
292
- - test/rails_root/public/images/file_icons/file_iso.gif
293
- - test/rails_root/public/images/file_icons/file_jpg.gif
294
- - test/rails_root/public/images/file_icons/file_mov.gif
295
- - test/rails_root/public/images/file_icons/file_mp3.gif
296
- - test/rails_root/public/images/file_icons/file_mpg.gif
297
- - test/rails_root/public/images/file_icons/file_pdf.gif
298
- - test/rails_root/public/images/file_icons/file_php.gif
299
- - test/rails_root/public/images/file_icons/file_png.gif
300
- - test/rails_root/public/images/file_icons/file_pps.gif
301
- - test/rails_root/public/images/file_icons/file_ppt.gif
302
- - test/rails_root/public/images/file_icons/file_psd.gif
303
- - test/rails_root/public/images/file_icons/file_qxd.gif
304
- - test/rails_root/public/images/file_icons/file_qxp.gif
305
- - test/rails_root/public/images/file_icons/file_raw.gif
306
- - test/rails_root/public/images/file_icons/file_rtf.gif
307
- - test/rails_root/public/images/file_icons/file_svg.gif
308
- - test/rails_root/public/images/file_icons/file_tif.gif
309
- - test/rails_root/public/images/file_icons/file_txt.gif
310
- - test/rails_root/public/images/file_icons/file_vcf.gif
311
- - test/rails_root/public/images/file_icons/file_wav.gif
312
- - test/rails_root/public/images/file_icons/file_wma.gif
313
- - test/rails_root/public/images/file_icons/file_xls.gif
314
- - test/rails_root/public/images/file_icons/file_xml.gif
315
- - test/rails_root/public/images/file_icons/mp3.gif
316
- - test/rails_root/public/images/file_icons/pdf.gif
317
- - test/rails_root/public/images/file_icons/pdf.png
318
- - test/rails_root/public/images/file_icons/text.gif
319
- - test/rails_root/public/images/file_icons/text.png
320
- - test/rails_root/public/images/file_icons/word.gif
321
- - test/rails_root/public/images/rails.png
322
- - test/rails_root/public/images/swfupload/SWFUploadButton.png
323
- - test/rails_root/public/images/swfupload/cancelbutton.gif
324
- - test/rails_root/public/images/uploadify/cancel.png
325
- - test/rails_root/public/javascripts/application.js
326
- - test/rails_root/public/javascripts/builder.js
327
- - test/rails_root/public/javascripts/controls.js
328
- - test/rails_root/public/javascripts/dragdrop.js
329
- - test/rails_root/public/javascripts/effects.js
330
- - test/rails_root/public/javascripts/jquery/jquery-ui.js
331
- - test/rails_root/public/javascripts/jquery/jquery.easing.js
332
- - test/rails_root/public/javascripts/jquery/jquery.fancybox.js
333
- - test/rails_root/public/javascripts/jquery/jquery.form.js
334
- - test/rails_root/public/javascripts/jquery/jquery.jgrowl.js
335
- - test/rails_root/public/javascripts/jquery/jquery.js
336
- - test/rails_root/public/javascripts/jquery/jquery.tips.js
337
- - test/rails_root/public/javascripts/jquery/jquery.uploadify.min.js
338
- - test/rails_root/public/javascripts/jquery/jrails.js
339
- - test/rails_root/public/javascripts/prototype.js
340
- - test/rails_root/public/javascripts/scriptaculous.js
341
- - test/rails_root/public/javascripts/slider.js
342
- - test/rails_root/public/javascripts/sound.js
343
- - test/rails_root/public/javascripts/swf/swfobject.js
344
- - test/rails_root/public/javascripts/swfupload/fileprogress.js
345
- - test/rails_root/public/javascripts/swfupload/handlers.js
346
- - test/rails_root/public/javascripts/swfupload/swfupload.cookies.js
347
- - test/rails_root/public/javascripts/swfupload/swfupload.js
348
- - test/rails_root/public/javascripts/swfupload/swfupload.proxy.js
349
- - test/rails_root/public/javascripts/swfupload/swfupload.queue.js
350
- - test/rails_root/public/javascripts/swfupload/swfupload.speed.js
351
- - test/rails_root/public/javascripts/swfupload/swfupload.swfobject.js
352
- - test/rails_root/public/robots.txt
353
- - test/rails_root/public/stylesheets/.keep
354
- - test/rails_root/public/stylesheets/swfupload.css
355
- - test/rails_root/public/stylesheets/uploadify.css
356
- - test/rails_root/public/swf/expressInstall.swf
357
- - test/rails_root/public/swf/swfupload.swf
358
- - test/rails_root/public/swf/swfupload_fp9.swf
359
- - test/rails_root/public/swf/uploadify.swf
360
- - test/rails_root/script/about
361
- - test/rails_root/script/breakpointer
362
- - test/rails_root/script/console
363
- - test/rails_root/script/create_project.rb
364
- - test/rails_root/script/cucumber
365
- - test/rails_root/script/dbconsole
366
- - test/rails_root/script/destroy
367
- - test/rails_root/script/generate
368
- - test/rails_root/script/performance/benchmarker
369
- - test/rails_root/script/performance/profiler
370
- - test/rails_root/script/performance/request
371
- - test/rails_root/script/plugin
372
- - test/rails_root/script/process/inspector
373
- - test/rails_root/script/process/reaper
374
- - test/rails_root/script/process/spawner
375
- - test/rails_root/script/runner
376
- - test/rails_root/script/server
377
- - test/rails_root/test/factories.rb
378
- - test/rails_root/test/fixtures/files/5k.png
379
- - test/rails_root/test/fixtures/files/IT'sUPPERCASE!AND WeIRD.JPG
380
- - test/rails_root/test/functional/.keep
381
- - test/rails_root/test/functional/default_controller_test.rb
382
- - test/rails_root/test/functional/uploads_controller_test.rb
383
- - test/rails_root/test/integration/.keep
384
- - test/rails_root/test/mocks/development/.keep
385
- - test/rails_root/test/mocks/test/.keep
386
- - test/rails_root/test/shoulda_macros/paperclip.rb
387
- - test/rails_root/test/test.doc
388
- - test/rails_root/test/test.pdf
389
- - test/rails_root/test/test.xls
390
- - test/rails_root/test/test_helper.rb
391
- - test/rails_root/test/unit/.keep
392
- - test/rails_root/test/unit/upload_test.rb
222
+ - test/rails_test/.gitignore
223
+ - test/rails_test/.rake_tasks
224
+ - test/rails_test/Gemfile
225
+ - test/rails_test/Gemfile.lock
226
+ - test/rails_test/README
227
+ - test/rails_test/Rakefile
228
+ - test/rails_test/app/controllers/application_controller.rb
229
+ - test/rails_test/app/controllers/default_controller.rb
230
+ - test/rails_test/app/controllers/uploads_controller.rb
231
+ - test/rails_test/app/models/.keep
232
+ - test/rails_test/app/models/upload.rb
233
+ - test/rails_test/app/models/user.rb
234
+ - test/rails_test/app/views/default/index.html.erb
235
+ - test/rails_test/app/views/default/uploadify.html.erb
236
+ - test/rails_test/app/views/layouts/application.html.erb
237
+ - test/rails_test/config.ru
238
+ - test/rails_test/config/amazon_s3.yml
239
+ - test/rails_test/config/application.rb
240
+ - test/rails_test/config/boot.rb
241
+ - test/rails_test/config/database.yml
242
+ - test/rails_test/config/environment.rb
243
+ - test/rails_test/config/environments/development.rb
244
+ - test/rails_test/config/environments/production.rb
245
+ - test/rails_test/config/environments/test.rb
246
+ - test/rails_test/config/global_config.yml
247
+ - test/rails_test/config/initializers/backtrace_silencers.rb
248
+ - test/rails_test/config/initializers/inflections.rb
249
+ - test/rails_test/config/initializers/mime_types.rb
250
+ - test/rails_test/config/initializers/s3_credentials.rb
251
+ - test/rails_test/config/initializers/secret_token.rb
252
+ - test/rails_test/config/initializers/session_store.rb
253
+ - test/rails_test/config/locales/en.yml
254
+ - test/rails_test/config/routes.rb
255
+ - test/rails_test/db/.keep
256
+ - test/rails_test/db/migrate/20090517040220_create_uploads.rb
257
+ - test/rails_test/db/migrate/20090602041838_create_users.rb
258
+ - test/rails_test/db/seeds.rb
259
+ - test/rails_test/doc/README_FOR_APP
260
+ - test/rails_test/features/step_definitions/webrat_steps.rb
261
+ - test/rails_test/features/support/env.rb
262
+ - test/rails_test/lib/daemons/amazonaws.rb
263
+ - test/rails_test/lib/tasks/.gitkeep
264
+ - test/rails_test/public/404.html
265
+ - test/rails_test/public/422.html
266
+ - test/rails_test/public/500.html
267
+ - test/rails_test/public/favicon.ico
268
+ - test/rails_test/public/images/file_icons/excel.gif
269
+ - test/rails_test/public/images/file_icons/file.gif
270
+ - test/rails_test/public/images/file_icons/file.png
271
+ - test/rails_test/public/images/file_icons/file_aac.gif
272
+ - test/rails_test/public/images/file_icons/file_ai.gif
273
+ - test/rails_test/public/images/file_icons/file_avi.gif
274
+ - test/rails_test/public/images/file_icons/file_bin.gif
275
+ - test/rails_test/public/images/file_icons/file_bmp.gif
276
+ - test/rails_test/public/images/file_icons/file_cue.gif
277
+ - test/rails_test/public/images/file_icons/file_divx.gif
278
+ - test/rails_test/public/images/file_icons/file_doc.gif
279
+ - test/rails_test/public/images/file_icons/file_eps.gif
280
+ - test/rails_test/public/images/file_icons/file_flac.gif
281
+ - test/rails_test/public/images/file_icons/file_flv.gif
282
+ - test/rails_test/public/images/file_icons/file_gif.gif
283
+ - test/rails_test/public/images/file_icons/file_html.gif
284
+ - test/rails_test/public/images/file_icons/file_ical.gif
285
+ - test/rails_test/public/images/file_icons/file_indd.gif
286
+ - test/rails_test/public/images/file_icons/file_inx.gif
287
+ - test/rails_test/public/images/file_icons/file_iso.gif
288
+ - test/rails_test/public/images/file_icons/file_jpg.gif
289
+ - test/rails_test/public/images/file_icons/file_mov.gif
290
+ - test/rails_test/public/images/file_icons/file_mp3.gif
291
+ - test/rails_test/public/images/file_icons/file_mpg.gif
292
+ - test/rails_test/public/images/file_icons/file_pdf.gif
293
+ - test/rails_test/public/images/file_icons/file_php.gif
294
+ - test/rails_test/public/images/file_icons/file_png.gif
295
+ - test/rails_test/public/images/file_icons/file_pps.gif
296
+ - test/rails_test/public/images/file_icons/file_ppt.gif
297
+ - test/rails_test/public/images/file_icons/file_psd.gif
298
+ - test/rails_test/public/images/file_icons/file_qxd.gif
299
+ - test/rails_test/public/images/file_icons/file_qxp.gif
300
+ - test/rails_test/public/images/file_icons/file_raw.gif
301
+ - test/rails_test/public/images/file_icons/file_rtf.gif
302
+ - test/rails_test/public/images/file_icons/file_svg.gif
303
+ - test/rails_test/public/images/file_icons/file_tif.gif
304
+ - test/rails_test/public/images/file_icons/file_txt.gif
305
+ - test/rails_test/public/images/file_icons/file_vcf.gif
306
+ - test/rails_test/public/images/file_icons/file_wav.gif
307
+ - test/rails_test/public/images/file_icons/file_wma.gif
308
+ - test/rails_test/public/images/file_icons/file_xls.gif
309
+ - test/rails_test/public/images/file_icons/file_xml.gif
310
+ - test/rails_test/public/images/file_icons/mp3.gif
311
+ - test/rails_test/public/images/file_icons/pdf.gif
312
+ - test/rails_test/public/images/file_icons/pdf.png
313
+ - test/rails_test/public/images/file_icons/text.gif
314
+ - test/rails_test/public/images/file_icons/text.png
315
+ - test/rails_test/public/images/file_icons/word.gif
316
+ - test/rails_test/public/images/rails.png
317
+ - test/rails_test/public/images/swfupload/SWFUploadButton.png
318
+ - test/rails_test/public/images/swfupload/cancelbutton.gif
319
+ - test/rails_test/public/images/uploadify/cancel.png
320
+ - test/rails_test/public/javascripts/application.js
321
+ - test/rails_test/public/javascripts/controls.js
322
+ - test/rails_test/public/javascripts/dragdrop.js
323
+ - test/rails_test/public/javascripts/effects.js
324
+ - test/rails_test/public/javascripts/jquery/jquery-1.4.2.min.js
325
+ - test/rails_test/public/javascripts/jquery/jquery-ui-1.8.4.custom.min.js
326
+ - test/rails_test/public/javascripts/jquery/jquery.uploadify.min.js
327
+ - test/rails_test/public/javascripts/prototype.js
328
+ - test/rails_test/public/javascripts/rails.js
329
+ - test/rails_test/public/javascripts/swf/swfobject.js
330
+ - test/rails_test/public/javascripts/swfupload/fileprogress.js
331
+ - test/rails_test/public/javascripts/swfupload/handlers.js
332
+ - test/rails_test/public/javascripts/swfupload/swfupload.cookies.js
333
+ - test/rails_test/public/javascripts/swfupload/swfupload.js
334
+ - test/rails_test/public/javascripts/swfupload/swfupload.proxy.js
335
+ - test/rails_test/public/javascripts/swfupload/swfupload.queue.js
336
+ - test/rails_test/public/javascripts/swfupload/swfupload.speed.js
337
+ - test/rails_test/public/javascripts/swfupload/swfupload.swfobject.js
338
+ - test/rails_test/public/robots.txt
339
+ - test/rails_test/public/stylesheets/.gitkeep
340
+ - test/rails_test/public/stylesheets/swfupload.css
341
+ - test/rails_test/public/stylesheets/uploadify.css
342
+ - test/rails_test/public/swf/expressInstall.swf
343
+ - test/rails_test/public/swf/swfupload.swf
344
+ - test/rails_test/public/swf/swfupload_fp9.swf
345
+ - test/rails_test/public/swf/uploadify.swf
346
+ - test/rails_test/script/rails
347
+ - test/rails_test/test/factories.rb
348
+ - test/rails_test/test/fixtures/files/5k.png
349
+ - test/rails_test/test/fixtures/files/IT'sUPPERCASE!AND WeIRD.JPG
350
+ - test/rails_test/test/fixtures/rails.png
351
+ - test/rails_test/test/fixtures/test.doc
352
+ - test/rails_test/test/fixtures/test.pdf
353
+ - test/rails_test/test/fixtures/test.txt
354
+ - test/rails_test/test/fixtures/test.xls
355
+ - test/rails_test/test/functional/.keep
356
+ - test/rails_test/test/functional/default_controller_test.rb
357
+ - test/rails_test/test/functional/uploads_controller_test.rb
358
+ - test/rails_test/test/integration/.keep
359
+ - test/rails_test/test/performance/browsing_test.rb
360
+ - test/rails_test/test/shoulda_macros/paperclip.rb
361
+ - test/rails_test/test/test_helper.rb
362
+ - test/rails_test/test/unit/.keep
363
+ - test/rails_test/test/unit/upload_test.rb
364
+ - test/rails_test/vendor/plugins/.gitkeep
393
365
  - uninstall.rb
394
366
  - uploader.gemspec
395
367
  has_rdoc: true
@@ -427,36 +399,34 @@ signing_key:
427
399
  specification_version: 3
428
400
  summary: Uploadify, SWFUpload + Paperclip wrapped in an engine with love.
429
401
  test_files:
430
- - test/rails_root/app/controllers/application_controller.rb
431
- - test/rails_root/app/controllers/default_controller.rb
432
- - test/rails_root/app/controllers/uploads_controller.rb
433
- - test/rails_root/app/models/upload.rb
434
- - test/rails_root/app/models/user.rb
435
- - test/rails_root/config/application.rb
436
- - test/rails_root/config/boot.rb
437
- - test/rails_root/config/environment.rb
438
- - test/rails_root/config/environments/development.rb
439
- - test/rails_root/config/environments/production.rb
440
- - test/rails_root/config/environments/test.rb
441
- - test/rails_root/config/initializers/backtrace_silencers.rb
442
- - test/rails_root/config/initializers/inflections.rb
443
- - test/rails_root/config/initializers/mime_types.rb
444
- - test/rails_root/config/initializers/requires.rb
445
- - test/rails_root/config/initializers/s3_credentials.rb
446
- - test/rails_root/config/initializers/secret_token.rb
447
- - test/rails_root/config/initializers/session_store.rb
448
- - test/rails_root/config/initializers/uploader.rb
449
- - test/rails_root/config/routes.rb
450
- - test/rails_root/db/migrate/20090517040220_create_uploads.rb
451
- - test/rails_root/db/migrate/20090602041838_create_users.rb
452
- - test/rails_root/features/step_definitions/webrat_steps.rb
453
- - test/rails_root/features/support/env.rb
454
- - test/rails_root/lib/daemons/amazonaws.rb
455
- - test/rails_root/public/dispatch.rb
456
- - test/rails_root/script/create_project.rb
457
- - test/rails_root/test/factories.rb
458
- - test/rails_root/test/functional/default_controller_test.rb
459
- - test/rails_root/test/functional/uploads_controller_test.rb
460
- - test/rails_root/test/shoulda_macros/paperclip.rb
461
- - test/rails_root/test/test_helper.rb
462
- - test/rails_root/test/unit/upload_test.rb
402
+ - test/rails_test/app/controllers/application_controller.rb
403
+ - test/rails_test/app/controllers/default_controller.rb
404
+ - test/rails_test/app/controllers/uploads_controller.rb
405
+ - test/rails_test/app/models/upload.rb
406
+ - test/rails_test/app/models/user.rb
407
+ - test/rails_test/config/application.rb
408
+ - test/rails_test/config/boot.rb
409
+ - test/rails_test/config/environment.rb
410
+ - test/rails_test/config/environments/development.rb
411
+ - test/rails_test/config/environments/production.rb
412
+ - test/rails_test/config/environments/test.rb
413
+ - test/rails_test/config/initializers/backtrace_silencers.rb
414
+ - test/rails_test/config/initializers/inflections.rb
415
+ - test/rails_test/config/initializers/mime_types.rb
416
+ - test/rails_test/config/initializers/s3_credentials.rb
417
+ - test/rails_test/config/initializers/secret_token.rb
418
+ - test/rails_test/config/initializers/session_store.rb
419
+ - test/rails_test/config/routes.rb
420
+ - test/rails_test/db/migrate/20090517040220_create_uploads.rb
421
+ - test/rails_test/db/migrate/20090602041838_create_users.rb
422
+ - test/rails_test/db/seeds.rb
423
+ - test/rails_test/features/step_definitions/webrat_steps.rb
424
+ - test/rails_test/features/support/env.rb
425
+ - test/rails_test/lib/daemons/amazonaws.rb
426
+ - test/rails_test/test/factories.rb
427
+ - test/rails_test/test/functional/default_controller_test.rb
428
+ - test/rails_test/test/functional/uploads_controller_test.rb
429
+ - test/rails_test/test/performance/browsing_test.rb
430
+ - test/rails_test/test/shoulda_macros/paperclip.rb
431
+ - test/rails_test/test/test_helper.rb
432
+ - test/rails_test/test/unit/upload_test.rb
data/Gemfile DELETED
@@ -1,13 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- gem "rails", "3.0.0.rc2"
4
- gem "capybara", ">= 0.3.9"
5
- gem 'mysql'
6
-
7
- gem "mime-types"
8
- gem "rack"
9
- gem "paperclip"
10
-
11
- if RUBY_VERSION < '1.9'
12
- gem "ruby-debug", ">= 0.10.3"
13
- end
@@ -1,3 +0,0 @@
1
- ActionController::Routing::Routes.draw do |map|
2
- map.resources :uploads, :controller => 'uploader/uploads', :collection => { :swfupload => :post }
3
- end