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
data/uploader.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{uploader}
8
- s.version = "2.0.2"
8
+ s.version = "3.0.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin", "David South"]
12
- s.date = %q{2010-09-03}
12
+ s.date = %q{2010-09-08}
13
13
  s.description = %q{Uploader gem that makes it simple add multiple file uploads to your Rails project using SWFUpload, Uploadify and Paperclip}
14
14
  s.email = %q{justinball@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -18,8 +18,6 @@ Gem::Specification.new do |s|
18
18
  ]
19
19
  s.files = [
20
20
  ".gitignore",
21
- "Gemfile",
22
- "Gemfile.lock",
23
21
  "MIT-LICENSE",
24
22
  "README.rdoc",
25
23
  "Rakefile",
@@ -30,60 +28,61 @@ Gem::Specification.new do |s|
30
28
  "app/views/uploads/_swf_javascript.html.erb",
31
29
  "app/views/uploads/_swf_upload.html.erb",
32
30
  "app/views/uploads/_uploadify.html.erb",
33
- "config/uploader_routes.rb",
31
+ "config/locales/ar.yml",
32
+ "config/locales/bg.yml",
33
+ "config/locales/ca.yml",
34
+ "config/locales/cs.yml",
35
+ "config/locales/da.yml",
36
+ "config/locales/de.yml",
37
+ "config/locales/el.yml",
38
+ "config/locales/en.yml",
39
+ "config/locales/es.yml",
40
+ "config/locales/et.yml",
41
+ "config/locales/fa.yml",
42
+ "config/locales/fi.yml",
43
+ "config/locales/fr.yml",
44
+ "config/locales/gl.yml",
45
+ "config/locales/hi.yml",
46
+ "config/locales/hr.yml",
47
+ "config/locales/hu.yml",
48
+ "config/locales/id.yml",
49
+ "config/locales/it.yml",
50
+ "config/locales/iw.yml",
51
+ "config/locales/ja.yml",
52
+ "config/locales/ko.yml",
53
+ "config/locales/lt.yml",
54
+ "config/locales/lv.yml",
55
+ "config/locales/mt.yml",
56
+ "config/locales/nl.yml",
57
+ "config/locales/no.yml",
58
+ "config/locales/pl.yml",
59
+ "config/locales/pt-PT.yml",
60
+ "config/locales/ro.yml",
61
+ "config/locales/ru.yml",
62
+ "config/locales/sk.yml",
63
+ "config/locales/sl.yml",
64
+ "config/locales/sq.yml",
65
+ "config/locales/sr.yml",
66
+ "config/locales/sv.yml",
67
+ "config/locales/th.yml",
68
+ "config/locales/tl.yml",
69
+ "config/locales/tr.yml",
70
+ "config/locales/uk.yml",
71
+ "config/locales/vi.yml",
72
+ "config/locales/zh-CN.yml",
73
+ "config/locales/zh-TW.yml",
74
+ "config/locales/zh.yml",
75
+ "config/routes.rb",
34
76
  "db/migrate/20090517040220_create_uploads.rb",
35
- "lib/active_record/acts/uploader_upload.rb",
36
77
  "lib/daemons/amazonaws.rb",
78
+ "lib/tasks/uploader.rake",
37
79
  "lib/uploader.rb",
80
+ "lib/uploader/config.rb",
81
+ "lib/uploader/engine.rb",
38
82
  "lib/uploader/exceptions.rb",
39
- "lib/uploader/initialize_routes.rb",
40
83
  "lib/uploader/middleware/flash_session_cookie_middleware.rb",
41
84
  "lib/uploader/mime_type_groups.rb",
42
- "lib/uploader/tasks.rb",
43
- "locales/ar.yml",
44
- "locales/bg.yml",
45
- "locales/ca.yml",
46
- "locales/cs.yml",
47
- "locales/da.yml",
48
- "locales/de.yml",
49
- "locales/el.yml",
50
- "locales/en.yml",
51
- "locales/es.yml",
52
- "locales/et.yml",
53
- "locales/fa.yml",
54
- "locales/fi.yml",
55
- "locales/fr.yml",
56
- "locales/gl.yml",
57
- "locales/hi.yml",
58
- "locales/hr.yml",
59
- "locales/hu.yml",
60
- "locales/id.yml",
61
- "locales/it.yml",
62
- "locales/iw.yml",
63
- "locales/ja.yml",
64
- "locales/ko.yml",
65
- "locales/lt.yml",
66
- "locales/lv.yml",
67
- "locales/mt.yml",
68
- "locales/nl.yml",
69
- "locales/no.yml",
70
- "locales/pl.yml",
71
- "locales/pt-PT.yml",
72
- "locales/ro.yml",
73
- "locales/ru.yml",
74
- "locales/sk.yml",
75
- "locales/sl.yml",
76
- "locales/sq.yml",
77
- "locales/sr.yml",
78
- "locales/sv.yml",
79
- "locales/th.yml",
80
- "locales/tl.yml",
81
- "locales/tr.yml",
82
- "locales/uk.yml",
83
- "locales/vi.yml",
84
- "locales/zh-CN.yml",
85
- "locales/zh-TW.yml",
86
- "locales/zh.yml",
85
+ "lib/uploader/models/upload.rb",
87
86
  "public/images/file_icons/excel.gif",
88
87
  "public/images/file_icons/file.gif",
89
88
  "public/images/file_icons/file.png",
@@ -151,176 +150,149 @@ Gem::Specification.new do |s|
151
150
  "public/swf/swfupload.swf",
152
151
  "public/swf/swfupload_fp9.swf",
153
152
  "public/swf/uploadify.swf",
154
- "rails/init.rb",
155
- "tasks/rails.rake",
156
- "test/rails_root/.gitignore",
157
- "test/rails_root/.rake_tasks",
158
- "test/rails_root/Capfile",
159
- "test/rails_root/Rakefile",
160
- "test/rails_root/app/controllers/application_controller.rb",
161
- "test/rails_root/app/controllers/default_controller.rb",
162
- "test/rails_root/app/controllers/uploads_controller.rb",
163
- "test/rails_root/app/models/.keep",
164
- "test/rails_root/app/models/upload.rb",
165
- "test/rails_root/app/models/user.rb",
166
- "test/rails_root/app/views/default/index.html.erb",
167
- "test/rails_root/app/views/default/uploadify.html.erb",
168
- "test/rails_root/app/views/layouts/application.html.erb",
169
- "test/rails_root/config/amazon_s3.yml",
170
- "test/rails_root/config/application.rb",
171
- "test/rails_root/config/boot.rb",
172
- "test/rails_root/config/database.yml",
173
- "test/rails_root/config/environment.rb",
174
- "test/rails_root/config/environments/development.rb",
175
- "test/rails_root/config/environments/production.rb",
176
- "test/rails_root/config/environments/test.rb",
177
- "test/rails_root/config/global_config.yml",
178
- "test/rails_root/config/initializers/backtrace_silencers.rb",
179
- "test/rails_root/config/initializers/inflections.rb",
180
- "test/rails_root/config/initializers/mime_types.rb",
181
- "test/rails_root/config/initializers/requires.rb",
182
- "test/rails_root/config/initializers/s3_credentials.rb",
183
- "test/rails_root/config/initializers/secret_token.rb",
184
- "test/rails_root/config/initializers/session_store.rb",
185
- "test/rails_root/config/initializers/uploader.rb",
186
- "test/rails_root/config/routes.rb",
187
- "test/rails_root/db/.keep",
188
- "test/rails_root/db/development.sqlite3",
189
- "test/rails_root/db/migrate/20090517040220_create_uploads.rb",
190
- "test/rails_root/db/migrate/20090602041838_create_users.rb",
191
- "test/rails_root/db/schema.rb",
192
- "test/rails_root/db/test.sqlite3",
193
- "test/rails_root/features/step_definitions/webrat_steps.rb",
194
- "test/rails_root/features/support/env.rb",
195
- "test/rails_root/lib/daemons/amazonaws.rb",
196
- "test/rails_root/public/.htaccess",
197
- "test/rails_root/public/404.html",
198
- "test/rails_root/public/422.html",
199
- "test/rails_root/public/500.html",
200
- "test/rails_root/public/dispatch.rb",
201
- "test/rails_root/public/favicon.ico",
202
- "test/rails_root/public/images/SWFUploadButton.png",
203
- "test/rails_root/public/images/cancelbutton.gif",
204
- "test/rails_root/public/images/file_icons/excel.gif",
205
- "test/rails_root/public/images/file_icons/file.gif",
206
- "test/rails_root/public/images/file_icons/file.png",
207
- "test/rails_root/public/images/file_icons/file_aac.gif",
208
- "test/rails_root/public/images/file_icons/file_ai.gif",
209
- "test/rails_root/public/images/file_icons/file_avi.gif",
210
- "test/rails_root/public/images/file_icons/file_bin.gif",
211
- "test/rails_root/public/images/file_icons/file_bmp.gif",
212
- "test/rails_root/public/images/file_icons/file_cue.gif",
213
- "test/rails_root/public/images/file_icons/file_divx.gif",
214
- "test/rails_root/public/images/file_icons/file_doc.gif",
215
- "test/rails_root/public/images/file_icons/file_eps.gif",
216
- "test/rails_root/public/images/file_icons/file_flac.gif",
217
- "test/rails_root/public/images/file_icons/file_flv.gif",
218
- "test/rails_root/public/images/file_icons/file_gif.gif",
219
- "test/rails_root/public/images/file_icons/file_html.gif",
220
- "test/rails_root/public/images/file_icons/file_ical.gif",
221
- "test/rails_root/public/images/file_icons/file_indd.gif",
222
- "test/rails_root/public/images/file_icons/file_inx.gif",
223
- "test/rails_root/public/images/file_icons/file_iso.gif",
224
- "test/rails_root/public/images/file_icons/file_jpg.gif",
225
- "test/rails_root/public/images/file_icons/file_mov.gif",
226
- "test/rails_root/public/images/file_icons/file_mp3.gif",
227
- "test/rails_root/public/images/file_icons/file_mpg.gif",
228
- "test/rails_root/public/images/file_icons/file_pdf.gif",
229
- "test/rails_root/public/images/file_icons/file_php.gif",
230
- "test/rails_root/public/images/file_icons/file_png.gif",
231
- "test/rails_root/public/images/file_icons/file_pps.gif",
232
- "test/rails_root/public/images/file_icons/file_ppt.gif",
233
- "test/rails_root/public/images/file_icons/file_psd.gif",
234
- "test/rails_root/public/images/file_icons/file_qxd.gif",
235
- "test/rails_root/public/images/file_icons/file_qxp.gif",
236
- "test/rails_root/public/images/file_icons/file_raw.gif",
237
- "test/rails_root/public/images/file_icons/file_rtf.gif",
238
- "test/rails_root/public/images/file_icons/file_svg.gif",
239
- "test/rails_root/public/images/file_icons/file_tif.gif",
240
- "test/rails_root/public/images/file_icons/file_txt.gif",
241
- "test/rails_root/public/images/file_icons/file_vcf.gif",
242
- "test/rails_root/public/images/file_icons/file_wav.gif",
243
- "test/rails_root/public/images/file_icons/file_wma.gif",
244
- "test/rails_root/public/images/file_icons/file_xls.gif",
245
- "test/rails_root/public/images/file_icons/file_xml.gif",
246
- "test/rails_root/public/images/file_icons/mp3.gif",
247
- "test/rails_root/public/images/file_icons/pdf.gif",
248
- "test/rails_root/public/images/file_icons/pdf.png",
249
- "test/rails_root/public/images/file_icons/text.gif",
250
- "test/rails_root/public/images/file_icons/text.png",
251
- "test/rails_root/public/images/file_icons/word.gif",
252
- "test/rails_root/public/images/rails.png",
253
- "test/rails_root/public/images/swfupload/SWFUploadButton.png",
254
- "test/rails_root/public/images/swfupload/cancelbutton.gif",
255
- "test/rails_root/public/images/uploadify/cancel.png",
256
- "test/rails_root/public/javascripts/application.js",
257
- "test/rails_root/public/javascripts/builder.js",
258
- "test/rails_root/public/javascripts/controls.js",
259
- "test/rails_root/public/javascripts/dragdrop.js",
260
- "test/rails_root/public/javascripts/effects.js",
261
- "test/rails_root/public/javascripts/jquery/jquery-ui.js",
262
- "test/rails_root/public/javascripts/jquery/jquery.easing.js",
263
- "test/rails_root/public/javascripts/jquery/jquery.fancybox.js",
264
- "test/rails_root/public/javascripts/jquery/jquery.form.js",
265
- "test/rails_root/public/javascripts/jquery/jquery.jgrowl.js",
266
- "test/rails_root/public/javascripts/jquery/jquery.js",
267
- "test/rails_root/public/javascripts/jquery/jquery.tips.js",
268
- "test/rails_root/public/javascripts/jquery/jquery.uploadify.min.js",
269
- "test/rails_root/public/javascripts/jquery/jrails.js",
270
- "test/rails_root/public/javascripts/prototype.js",
271
- "test/rails_root/public/javascripts/scriptaculous.js",
272
- "test/rails_root/public/javascripts/slider.js",
273
- "test/rails_root/public/javascripts/sound.js",
274
- "test/rails_root/public/javascripts/swf/swfobject.js",
275
- "test/rails_root/public/javascripts/swfupload/fileprogress.js",
276
- "test/rails_root/public/javascripts/swfupload/handlers.js",
277
- "test/rails_root/public/javascripts/swfupload/swfupload.cookies.js",
278
- "test/rails_root/public/javascripts/swfupload/swfupload.js",
279
- "test/rails_root/public/javascripts/swfupload/swfupload.proxy.js",
280
- "test/rails_root/public/javascripts/swfupload/swfupload.queue.js",
281
- "test/rails_root/public/javascripts/swfupload/swfupload.speed.js",
282
- "test/rails_root/public/javascripts/swfupload/swfupload.swfobject.js",
283
- "test/rails_root/public/robots.txt",
284
- "test/rails_root/public/stylesheets/.keep",
285
- "test/rails_root/public/stylesheets/swfupload.css",
286
- "test/rails_root/public/stylesheets/uploadify.css",
287
- "test/rails_root/public/swf/expressInstall.swf",
288
- "test/rails_root/public/swf/swfupload.swf",
289
- "test/rails_root/public/swf/swfupload_fp9.swf",
290
- "test/rails_root/public/swf/uploadify.swf",
291
- "test/rails_root/script/about",
292
- "test/rails_root/script/breakpointer",
293
- "test/rails_root/script/console",
294
- "test/rails_root/script/create_project.rb",
295
- "test/rails_root/script/cucumber",
296
- "test/rails_root/script/dbconsole",
297
- "test/rails_root/script/destroy",
298
- "test/rails_root/script/generate",
299
- "test/rails_root/script/performance/benchmarker",
300
- "test/rails_root/script/performance/profiler",
301
- "test/rails_root/script/performance/request",
302
- "test/rails_root/script/plugin",
303
- "test/rails_root/script/process/inspector",
304
- "test/rails_root/script/process/reaper",
305
- "test/rails_root/script/process/spawner",
306
- "test/rails_root/script/runner",
307
- "test/rails_root/script/server",
308
- "test/rails_root/test/factories.rb",
309
- "test/rails_root/test/fixtures/files/5k.png",
310
- "test/rails_root/test/fixtures/files/IT'sUPPERCASE!AND WeIRD.JPG",
311
- "test/rails_root/test/functional/.keep",
312
- "test/rails_root/test/functional/default_controller_test.rb",
313
- "test/rails_root/test/functional/uploads_controller_test.rb",
314
- "test/rails_root/test/integration/.keep",
315
- "test/rails_root/test/mocks/development/.keep",
316
- "test/rails_root/test/mocks/test/.keep",
317
- "test/rails_root/test/shoulda_macros/paperclip.rb",
318
- "test/rails_root/test/test.doc",
319
- "test/rails_root/test/test.pdf",
320
- "test/rails_root/test/test.xls",
321
- "test/rails_root/test/test_helper.rb",
322
- "test/rails_root/test/unit/.keep",
323
- "test/rails_root/test/unit/upload_test.rb",
153
+ "test/rails_test/.gitignore",
154
+ "test/rails_test/.rake_tasks",
155
+ "test/rails_test/Gemfile",
156
+ "test/rails_test/Gemfile.lock",
157
+ "test/rails_test/README",
158
+ "test/rails_test/Rakefile",
159
+ "test/rails_test/app/controllers/application_controller.rb",
160
+ "test/rails_test/app/controllers/default_controller.rb",
161
+ "test/rails_test/app/controllers/uploads_controller.rb",
162
+ "test/rails_test/app/models/.keep",
163
+ "test/rails_test/app/models/upload.rb",
164
+ "test/rails_test/app/models/user.rb",
165
+ "test/rails_test/app/views/default/index.html.erb",
166
+ "test/rails_test/app/views/default/uploadify.html.erb",
167
+ "test/rails_test/app/views/layouts/application.html.erb",
168
+ "test/rails_test/config.ru",
169
+ "test/rails_test/config/amazon_s3.yml",
170
+ "test/rails_test/config/application.rb",
171
+ "test/rails_test/config/boot.rb",
172
+ "test/rails_test/config/database.yml",
173
+ "test/rails_test/config/environment.rb",
174
+ "test/rails_test/config/environments/development.rb",
175
+ "test/rails_test/config/environments/production.rb",
176
+ "test/rails_test/config/environments/test.rb",
177
+ "test/rails_test/config/global_config.yml",
178
+ "test/rails_test/config/initializers/backtrace_silencers.rb",
179
+ "test/rails_test/config/initializers/inflections.rb",
180
+ "test/rails_test/config/initializers/mime_types.rb",
181
+ "test/rails_test/config/initializers/s3_credentials.rb",
182
+ "test/rails_test/config/initializers/secret_token.rb",
183
+ "test/rails_test/config/initializers/session_store.rb",
184
+ "test/rails_test/config/locales/en.yml",
185
+ "test/rails_test/config/routes.rb",
186
+ "test/rails_test/db/.keep",
187
+ "test/rails_test/db/migrate/20090517040220_create_uploads.rb",
188
+ "test/rails_test/db/migrate/20090602041838_create_users.rb",
189
+ "test/rails_test/db/seeds.rb",
190
+ "test/rails_test/doc/README_FOR_APP",
191
+ "test/rails_test/features/step_definitions/webrat_steps.rb",
192
+ "test/rails_test/features/support/env.rb",
193
+ "test/rails_test/lib/daemons/amazonaws.rb",
194
+ "test/rails_test/lib/tasks/.gitkeep",
195
+ "test/rails_test/public/404.html",
196
+ "test/rails_test/public/422.html",
197
+ "test/rails_test/public/500.html",
198
+ "test/rails_test/public/favicon.ico",
199
+ "test/rails_test/public/images/file_icons/excel.gif",
200
+ "test/rails_test/public/images/file_icons/file.gif",
201
+ "test/rails_test/public/images/file_icons/file.png",
202
+ "test/rails_test/public/images/file_icons/file_aac.gif",
203
+ "test/rails_test/public/images/file_icons/file_ai.gif",
204
+ "test/rails_test/public/images/file_icons/file_avi.gif",
205
+ "test/rails_test/public/images/file_icons/file_bin.gif",
206
+ "test/rails_test/public/images/file_icons/file_bmp.gif",
207
+ "test/rails_test/public/images/file_icons/file_cue.gif",
208
+ "test/rails_test/public/images/file_icons/file_divx.gif",
209
+ "test/rails_test/public/images/file_icons/file_doc.gif",
210
+ "test/rails_test/public/images/file_icons/file_eps.gif",
211
+ "test/rails_test/public/images/file_icons/file_flac.gif",
212
+ "test/rails_test/public/images/file_icons/file_flv.gif",
213
+ "test/rails_test/public/images/file_icons/file_gif.gif",
214
+ "test/rails_test/public/images/file_icons/file_html.gif",
215
+ "test/rails_test/public/images/file_icons/file_ical.gif",
216
+ "test/rails_test/public/images/file_icons/file_indd.gif",
217
+ "test/rails_test/public/images/file_icons/file_inx.gif",
218
+ "test/rails_test/public/images/file_icons/file_iso.gif",
219
+ "test/rails_test/public/images/file_icons/file_jpg.gif",
220
+ "test/rails_test/public/images/file_icons/file_mov.gif",
221
+ "test/rails_test/public/images/file_icons/file_mp3.gif",
222
+ "test/rails_test/public/images/file_icons/file_mpg.gif",
223
+ "test/rails_test/public/images/file_icons/file_pdf.gif",
224
+ "test/rails_test/public/images/file_icons/file_php.gif",
225
+ "test/rails_test/public/images/file_icons/file_png.gif",
226
+ "test/rails_test/public/images/file_icons/file_pps.gif",
227
+ "test/rails_test/public/images/file_icons/file_ppt.gif",
228
+ "test/rails_test/public/images/file_icons/file_psd.gif",
229
+ "test/rails_test/public/images/file_icons/file_qxd.gif",
230
+ "test/rails_test/public/images/file_icons/file_qxp.gif",
231
+ "test/rails_test/public/images/file_icons/file_raw.gif",
232
+ "test/rails_test/public/images/file_icons/file_rtf.gif",
233
+ "test/rails_test/public/images/file_icons/file_svg.gif",
234
+ "test/rails_test/public/images/file_icons/file_tif.gif",
235
+ "test/rails_test/public/images/file_icons/file_txt.gif",
236
+ "test/rails_test/public/images/file_icons/file_vcf.gif",
237
+ "test/rails_test/public/images/file_icons/file_wav.gif",
238
+ "test/rails_test/public/images/file_icons/file_wma.gif",
239
+ "test/rails_test/public/images/file_icons/file_xls.gif",
240
+ "test/rails_test/public/images/file_icons/file_xml.gif",
241
+ "test/rails_test/public/images/file_icons/mp3.gif",
242
+ "test/rails_test/public/images/file_icons/pdf.gif",
243
+ "test/rails_test/public/images/file_icons/pdf.png",
244
+ "test/rails_test/public/images/file_icons/text.gif",
245
+ "test/rails_test/public/images/file_icons/text.png",
246
+ "test/rails_test/public/images/file_icons/word.gif",
247
+ "test/rails_test/public/images/rails.png",
248
+ "test/rails_test/public/images/swfupload/SWFUploadButton.png",
249
+ "test/rails_test/public/images/swfupload/cancelbutton.gif",
250
+ "test/rails_test/public/images/uploadify/cancel.png",
251
+ "test/rails_test/public/javascripts/application.js",
252
+ "test/rails_test/public/javascripts/controls.js",
253
+ "test/rails_test/public/javascripts/dragdrop.js",
254
+ "test/rails_test/public/javascripts/effects.js",
255
+ "test/rails_test/public/javascripts/jquery/jquery-1.4.2.min.js",
256
+ "test/rails_test/public/javascripts/jquery/jquery-ui-1.8.4.custom.min.js",
257
+ "test/rails_test/public/javascripts/jquery/jquery.uploadify.min.js",
258
+ "test/rails_test/public/javascripts/prototype.js",
259
+ "test/rails_test/public/javascripts/rails.js",
260
+ "test/rails_test/public/javascripts/swf/swfobject.js",
261
+ "test/rails_test/public/javascripts/swfupload/fileprogress.js",
262
+ "test/rails_test/public/javascripts/swfupload/handlers.js",
263
+ "test/rails_test/public/javascripts/swfupload/swfupload.cookies.js",
264
+ "test/rails_test/public/javascripts/swfupload/swfupload.js",
265
+ "test/rails_test/public/javascripts/swfupload/swfupload.proxy.js",
266
+ "test/rails_test/public/javascripts/swfupload/swfupload.queue.js",
267
+ "test/rails_test/public/javascripts/swfupload/swfupload.speed.js",
268
+ "test/rails_test/public/javascripts/swfupload/swfupload.swfobject.js",
269
+ "test/rails_test/public/robots.txt",
270
+ "test/rails_test/public/stylesheets/.gitkeep",
271
+ "test/rails_test/public/stylesheets/swfupload.css",
272
+ "test/rails_test/public/stylesheets/uploadify.css",
273
+ "test/rails_test/public/swf/expressInstall.swf",
274
+ "test/rails_test/public/swf/swfupload.swf",
275
+ "test/rails_test/public/swf/swfupload_fp9.swf",
276
+ "test/rails_test/public/swf/uploadify.swf",
277
+ "test/rails_test/script/rails",
278
+ "test/rails_test/test/factories.rb",
279
+ "test/rails_test/test/fixtures/files/5k.png",
280
+ "test/rails_test/test/fixtures/files/IT'sUPPERCASE!AND WeIRD.JPG",
281
+ "test/rails_test/test/fixtures/rails.png",
282
+ "test/rails_test/test/fixtures/test.doc",
283
+ "test/rails_test/test/fixtures/test.pdf",
284
+ "test/rails_test/test/fixtures/test.txt",
285
+ "test/rails_test/test/fixtures/test.xls",
286
+ "test/rails_test/test/functional/.keep",
287
+ "test/rails_test/test/functional/default_controller_test.rb",
288
+ "test/rails_test/test/functional/uploads_controller_test.rb",
289
+ "test/rails_test/test/integration/.keep",
290
+ "test/rails_test/test/performance/browsing_test.rb",
291
+ "test/rails_test/test/shoulda_macros/paperclip.rb",
292
+ "test/rails_test/test/test_helper.rb",
293
+ "test/rails_test/test/unit/.keep",
294
+ "test/rails_test/test/unit/upload_test.rb",
295
+ "test/rails_test/vendor/plugins/.gitkeep",
324
296
  "uninstall.rb",
325
297
  "uploader.gemspec"
326
298
  ]
@@ -331,39 +303,37 @@ Gem::Specification.new do |s|
331
303
  s.rubygems_version = %q{1.3.7}
332
304
  s.summary = %q{Uploadify, SWFUpload + Paperclip wrapped in an engine with love.}
333
305
  s.test_files = [
334
- "test/rails_root/app/controllers/application_controller.rb",
335
- "test/rails_root/app/controllers/default_controller.rb",
336
- "test/rails_root/app/controllers/uploads_controller.rb",
337
- "test/rails_root/app/models/upload.rb",
338
- "test/rails_root/app/models/user.rb",
339
- "test/rails_root/config/application.rb",
340
- "test/rails_root/config/boot.rb",
341
- "test/rails_root/config/environment.rb",
342
- "test/rails_root/config/environments/development.rb",
343
- "test/rails_root/config/environments/production.rb",
344
- "test/rails_root/config/environments/test.rb",
345
- "test/rails_root/config/initializers/backtrace_silencers.rb",
346
- "test/rails_root/config/initializers/inflections.rb",
347
- "test/rails_root/config/initializers/mime_types.rb",
348
- "test/rails_root/config/initializers/requires.rb",
349
- "test/rails_root/config/initializers/s3_credentials.rb",
350
- "test/rails_root/config/initializers/secret_token.rb",
351
- "test/rails_root/config/initializers/session_store.rb",
352
- "test/rails_root/config/initializers/uploader.rb",
353
- "test/rails_root/config/routes.rb",
354
- "test/rails_root/db/migrate/20090517040220_create_uploads.rb",
355
- "test/rails_root/db/migrate/20090602041838_create_users.rb",
356
- "test/rails_root/features/step_definitions/webrat_steps.rb",
357
- "test/rails_root/features/support/env.rb",
358
- "test/rails_root/lib/daemons/amazonaws.rb",
359
- "test/rails_root/public/dispatch.rb",
360
- "test/rails_root/script/create_project.rb",
361
- "test/rails_root/test/factories.rb",
362
- "test/rails_root/test/functional/default_controller_test.rb",
363
- "test/rails_root/test/functional/uploads_controller_test.rb",
364
- "test/rails_root/test/shoulda_macros/paperclip.rb",
365
- "test/rails_root/test/test_helper.rb",
366
- "test/rails_root/test/unit/upload_test.rb"
306
+ "test/rails_test/app/controllers/application_controller.rb",
307
+ "test/rails_test/app/controllers/default_controller.rb",
308
+ "test/rails_test/app/controllers/uploads_controller.rb",
309
+ "test/rails_test/app/models/upload.rb",
310
+ "test/rails_test/app/models/user.rb",
311
+ "test/rails_test/config/application.rb",
312
+ "test/rails_test/config/boot.rb",
313
+ "test/rails_test/config/environment.rb",
314
+ "test/rails_test/config/environments/development.rb",
315
+ "test/rails_test/config/environments/production.rb",
316
+ "test/rails_test/config/environments/test.rb",
317
+ "test/rails_test/config/initializers/backtrace_silencers.rb",
318
+ "test/rails_test/config/initializers/inflections.rb",
319
+ "test/rails_test/config/initializers/mime_types.rb",
320
+ "test/rails_test/config/initializers/s3_credentials.rb",
321
+ "test/rails_test/config/initializers/secret_token.rb",
322
+ "test/rails_test/config/initializers/session_store.rb",
323
+ "test/rails_test/config/routes.rb",
324
+ "test/rails_test/db/migrate/20090517040220_create_uploads.rb",
325
+ "test/rails_test/db/migrate/20090602041838_create_users.rb",
326
+ "test/rails_test/db/seeds.rb",
327
+ "test/rails_test/features/step_definitions/webrat_steps.rb",
328
+ "test/rails_test/features/support/env.rb",
329
+ "test/rails_test/lib/daemons/amazonaws.rb",
330
+ "test/rails_test/test/factories.rb",
331
+ "test/rails_test/test/functional/default_controller_test.rb",
332
+ "test/rails_test/test/functional/uploads_controller_test.rb",
333
+ "test/rails_test/test/performance/browsing_test.rb",
334
+ "test/rails_test/test/shoulda_macros/paperclip.rb",
335
+ "test/rails_test/test/test_helper.rb",
336
+ "test/rails_test/test/unit/upload_test.rb"
367
337
  ]
368
338
 
369
339
  if s.respond_to? :specification_version then