enju_biblio 0.1.0.pre52 → 0.1.0.pre53

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/agent_import_files_controller.rb +6 -0
  3. data/app/controllers/agent_import_results_controller.rb +1 -1
  4. data/app/controllers/manifestations_controller.rb +8 -0
  5. data/app/controllers/resource_export_files_controller.rb +100 -0
  6. data/app/controllers/resource_import_files_controller.rb +6 -0
  7. data/app/controllers/resource_import_results_controller.rb +2 -2
  8. data/app/models/agent.rb +0 -2
  9. data/app/models/agent_import_file.rb +38 -52
  10. data/app/models/agent_import_file_state_machine.rb +19 -0
  11. data/app/models/agent_import_file_transition.rb +20 -0
  12. data/app/models/enju_biblio/ability.rb +14 -12
  13. data/app/models/import_request.rb +21 -17
  14. data/app/models/import_request_state_machine.rb +9 -0
  15. data/app/models/import_request_transition.rb +20 -0
  16. data/app/models/item.rb +0 -2
  17. data/app/models/manifestation.rb +63 -2
  18. data/app/models/resource_export_file.rb +59 -0
  19. data/app/models/resource_export_file_state_machine.rb +15 -0
  20. data/app/models/resource_export_file_transition.rb +20 -0
  21. data/app/models/resource_import_file.rb +42 -57
  22. data/app/models/resource_import_file_state_machine.rb +19 -0
  23. data/app/models/resource_import_file_transition.rb +20 -0
  24. data/app/views/agent_import_files/edit.html.erb +2 -2
  25. data/app/views/agent_import_files/index.html.erb +4 -4
  26. data/app/views/agent_import_files/new.html.erb +16 -3
  27. data/app/views/agent_import_files/show.html.erb +13 -3
  28. data/app/views/agent_import_results/index.html.erb +6 -6
  29. data/app/views/agent_import_results/{index.csv.erb → index.tsv.erb} +0 -0
  30. data/app/views/agent_import_results/show.html.erb +2 -2
  31. data/app/views/agent_relationship_types/edit.html.erb +2 -2
  32. data/app/views/agent_relationship_types/index.html.erb +2 -2
  33. data/app/views/agent_relationship_types/new.html.erb +2 -2
  34. data/app/views/agent_relationship_types/show.html.erb +2 -2
  35. data/app/views/agent_relationships/edit.html.erb +2 -2
  36. data/app/views/agent_relationships/index.html.erb +2 -2
  37. data/app/views/agent_relationships/new.html.erb +2 -2
  38. data/app/views/agent_relationships/show.html.erb +2 -2
  39. data/app/views/agent_types/edit.html.erb +2 -2
  40. data/app/views/agent_types/index.html.erb +2 -2
  41. data/app/views/agent_types/new.html.erb +2 -2
  42. data/app/views/agent_types/show.html.erb +2 -2
  43. data/app/views/agents/_index.html.erb +2 -2
  44. data/app/views/agents/_index_agent.html.erb +2 -2
  45. data/app/views/agents/_index_expression.html.erb +2 -2
  46. data/app/views/agents/_index_manifestation.html.erb +2 -2
  47. data/app/views/agents/_index_work.html.erb +2 -2
  48. data/app/views/agents/edit.html.erb +2 -2
  49. data/app/views/agents/new.html.erb +2 -2
  50. data/app/views/agents/show.html.erb +2 -2
  51. data/app/views/carrier_types/edit.html.erb +2 -2
  52. data/app/views/carrier_types/index.html.erb +2 -2
  53. data/app/views/carrier_types/new.html.erb +2 -2
  54. data/app/views/carrier_types/show.html.erb +2 -2
  55. data/app/views/content_types/edit.html.erb +2 -2
  56. data/app/views/content_types/index.html.erb +2 -2
  57. data/app/views/content_types/new.html.erb +2 -2
  58. data/app/views/content_types/show.html.erb +2 -2
  59. data/app/views/countries/edit.html.erb +2 -2
  60. data/app/views/countries/index.html.erb +2 -2
  61. data/app/views/countries/new.html.erb +2 -2
  62. data/app/views/countries/show.html.erb +2 -2
  63. data/app/views/create_types/edit.html.erb +2 -2
  64. data/app/views/create_types/index.html.erb +2 -2
  65. data/app/views/create_types/new.html.erb +2 -2
  66. data/app/views/create_types/show.html.erb +2 -2
  67. data/app/views/creates/_index.html.erb +2 -2
  68. data/app/views/creates/_index_agent.html.erb +2 -2
  69. data/app/views/creates/_index_work.html.erb +2 -2
  70. data/app/views/creates/edit.html.erb +2 -2
  71. data/app/views/creates/new.html.erb +2 -2
  72. data/app/views/creates/show.html.erb +2 -2
  73. data/app/views/donates/edit.html.erb +2 -2
  74. data/app/views/donates/index.html.erb +2 -2
  75. data/app/views/donates/new.html.erb +2 -2
  76. data/app/views/donates/show.html.erb +2 -2
  77. data/app/views/exemplifies/edit.html.erb +2 -2
  78. data/app/views/exemplifies/index.html.erb +2 -2
  79. data/app/views/exemplifies/new.html.erb +2 -2
  80. data/app/views/exemplifies/show.html.erb +2 -2
  81. data/app/views/extents/edit.html.erb +2 -2
  82. data/app/views/extents/index.html.erb +2 -2
  83. data/app/views/extents/new.html.erb +2 -2
  84. data/app/views/extents/show.html.erb +2 -2
  85. data/app/views/form_of_works/edit.html.erb +2 -2
  86. data/app/views/form_of_works/index.html.erb +2 -2
  87. data/app/views/form_of_works/new.html.erb +2 -2
  88. data/app/views/form_of_works/show.html.erb +2 -2
  89. data/app/views/frequencies/edit.html.erb +2 -2
  90. data/app/views/frequencies/index.html.erb +2 -2
  91. data/app/views/frequencies/new.html.erb +2 -2
  92. data/app/views/frequencies/show.html.erb +2 -2
  93. data/app/views/identifier_types/edit.html.erb +2 -2
  94. data/app/views/identifier_types/index.html.erb +2 -2
  95. data/app/views/identifier_types/new.html.erb +2 -2
  96. data/app/views/identifier_types/show.html.erb +2 -2
  97. data/app/views/import_requests/edit.html.erb +2 -2
  98. data/app/views/import_requests/index.html.erb +9 -7
  99. data/app/views/import_requests/new.html.erb +2 -2
  100. data/app/views/import_requests/show.html.erb +3 -3
  101. data/app/views/items/_form.html.erb +1 -1
  102. data/app/views/items/edit.html.erb +2 -2
  103. data/app/views/items/index.html.erb +2 -2
  104. data/app/views/items/new.html.erb +2 -2
  105. data/app/views/items/show.html.erb +2 -2
  106. data/app/views/languages/edit.html.erb +2 -2
  107. data/app/views/languages/index.html.erb +2 -2
  108. data/app/views/languages/new.html.erb +2 -2
  109. data/app/views/languages/show.html.erb +2 -2
  110. data/app/views/licenses/edit.html.erb +2 -2
  111. data/app/views/licenses/index.html.erb +2 -2
  112. data/app/views/licenses/new.html.erb +2 -2
  113. data/app/views/licenses/show.html.erb +2 -2
  114. data/app/views/manifestation_relationship_types/edit.html.erb +2 -2
  115. data/app/views/manifestation_relationship_types/index.html.erb +2 -2
  116. data/app/views/manifestation_relationship_types/new.html.erb +2 -2
  117. data/app/views/manifestation_relationship_types/show.html.erb +2 -2
  118. data/app/views/manifestation_relationships/edit.html.erb +2 -2
  119. data/app/views/manifestation_relationships/index.html.erb +2 -2
  120. data/app/views/manifestation_relationships/new.html.erb +2 -2
  121. data/app/views/manifestation_relationships/show.html.erb +2 -2
  122. data/app/views/manifestations/_pickup.html.erb +1 -1
  123. data/app/views/manifestations/_show_detail_librarian.html.erb +1 -1
  124. data/app/views/manifestations/_show_detail_user.html.erb +2 -2
  125. data/app/views/manifestations/_show_holding.html.erb +6 -1
  126. data/app/views/manifestations/_title.html.erb +1 -1
  127. data/app/views/manifestations/_title.mobile.erb +1 -1
  128. data/app/views/manifestations/edit.html.erb +2 -2
  129. data/app/views/manifestations/index.html.erb +2 -2
  130. data/app/views/manifestations/index.sru.builder +1 -1
  131. data/app/views/manifestations/new.html.erb +2 -2
  132. data/app/views/manifestations/show.html.erb +3 -3
  133. data/app/views/manifestations/show.mobile.erb +1 -1
  134. data/app/views/medium_of_performances/edit.html.erb +2 -2
  135. data/app/views/medium_of_performances/index.html.erb +2 -2
  136. data/app/views/medium_of_performances/new.html.erb +2 -2
  137. data/app/views/medium_of_performances/show.html.erb +2 -2
  138. data/app/views/notifier/manifestation_info.en.text.erb +1 -1
  139. data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
  140. data/app/views/owns/edit.html.erb +2 -2
  141. data/app/views/owns/index.html.erb +2 -2
  142. data/app/views/owns/new.html.erb +2 -2
  143. data/app/views/owns/show.html.erb +2 -2
  144. data/app/views/picture_files/_index.html.erb +2 -2
  145. data/app/views/picture_files/_index_agent.html.erb +2 -2
  146. data/app/views/picture_files/_index_event.html.erb +2 -2
  147. data/app/views/picture_files/_index_manifestation.html.erb +2 -2
  148. data/app/views/picture_files/_index_shelf.html.erb +2 -2
  149. data/app/views/picture_files/edit.html.erb +2 -2
  150. data/app/views/picture_files/new.html.erb +2 -2
  151. data/app/views/picture_files/show.html.erb +2 -2
  152. data/app/views/produce_types/edit.html.erb +2 -2
  153. data/app/views/produce_types/index.html.erb +2 -2
  154. data/app/views/produce_types/new.html.erb +2 -2
  155. data/app/views/produce_types/show.html.erb +2 -2
  156. data/app/views/produces/_index.html.erb +2 -2
  157. data/app/views/produces/_index_agent.html.erb +2 -2
  158. data/app/views/produces/_index_manifestation.html.erb +2 -2
  159. data/app/views/produces/edit.html.erb +2 -2
  160. data/app/views/produces/new.html.erb +2 -2
  161. data/app/views/produces/show.html.erb +2 -2
  162. data/app/views/realize_types/edit.html.erb +2 -2
  163. data/app/views/realize_types/index.html.erb +2 -2
  164. data/app/views/realize_types/new.html.erb +2 -2
  165. data/app/views/realize_types/show.html.erb +2 -2
  166. data/app/views/realizes/_index.html.erb +2 -2
  167. data/app/views/realizes/_index_agent.html.erb +2 -2
  168. data/app/views/realizes/_index_expression.html.erb +2 -2
  169. data/app/views/realizes/edit.html.erb +2 -2
  170. data/app/views/realizes/new.html.erb +2 -2
  171. data/app/views/realizes/show.html.erb +2 -2
  172. data/app/views/resource_export_files/_form.html.erb +22 -0
  173. data/app/views/resource_export_files/edit.html.erb +6 -0
  174. data/app/views/resource_export_files/index.html.erb +44 -0
  175. data/app/views/resource_export_files/new.html.erb +16 -0
  176. data/app/views/resource_export_files/show.html.erb +31 -0
  177. data/app/views/resource_import_files/edit.html.erb +2 -2
  178. data/app/views/resource_import_files/index.html.erb +4 -4
  179. data/app/views/resource_import_files/new.html.erb +16 -3
  180. data/app/views/resource_import_files/show.html.erb +13 -3
  181. data/app/views/resource_import_results/index.html.erb +6 -6
  182. data/app/views/resource_import_results/{index.csv.erb → index.tsv.erb} +0 -0
  183. data/app/views/resource_import_results/show.html.erb +2 -2
  184. data/app/views/series_statements/_index.html.erb +2 -2
  185. data/app/views/series_statements/_index_manifestation.html.erb +2 -2
  186. data/app/views/series_statements/_index_series_statement_merge_list.html.erb +2 -2
  187. data/app/views/series_statements/edit.html.erb +2 -2
  188. data/app/views/series_statements/new.html.erb +2 -2
  189. data/app/views/series_statements/show.html.erb +2 -2
  190. data/app/workers/agent_import_file_queue.rb +7 -0
  191. data/app/workers/resource_export_file_queue.rb +7 -0
  192. data/app/workers/resource_import_file_queue.rb +7 -0
  193. data/config/locales/translation_en.yml +12 -1
  194. data/config/locales/translation_ja.yml +12 -0
  195. data/config/routes.rb +3 -1
  196. data/db/migrate/001_create_agents.rb +0 -1
  197. data/db/migrate/005_create_manifestations.rb +0 -1
  198. data/db/migrate/006_create_items.rb +0 -1
  199. data/db/migrate/20081028083142_create_agent_import_files.rb +0 -2
  200. data/db/migrate/20081028083208_create_resource_import_files.rb +0 -2
  201. data/db/migrate/20100129142347_create_import_requests.rb +0 -1
  202. data/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
  203. data/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
  204. data/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
  205. data/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  206. data/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
  207. data/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  208. data/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  209. data/lib/enju_biblio/engine.rb +1 -0
  210. data/lib/enju_biblio/version.rb +1 -1
  211. data/lib/generators/enju_biblio/setup/templates/config/schedule.rb +1 -1
  212. data/spec/controllers/manifestations_controller_spec.rb +4 -4
  213. data/spec/controllers/resource_export_files_controller_spec.rb +292 -0
  214. data/spec/dummy/app/models/ability.rb +1 -0
  215. data/spec/dummy/config/initializers/statesman.rb +3 -0
  216. data/spec/dummy/db/migrate/154_create_messages.rb +0 -1
  217. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +0 -2
  218. data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +0 -2
  219. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
  220. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +0 -3
  221. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
  222. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
  223. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
  224. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
  225. data/spec/dummy/db/schema.rb +63 -31
  226. data/spec/dummy/db/test.sqlite3 +0 -0
  227. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample1.tsv +19 -19
  228. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140705-26819-14hii8j.txt +147 -0
  229. data/spec/dummy/solr/default/data/index/segments.gen +0 -0
  230. data/spec/dummy/solr/default/data/index/segments_1 +0 -0
  231. data/spec/dummy/solr/test/data/index/segments.gen +0 -0
  232. data/spec/dummy/solr/test/data/index/segments_6y +0 -0
  233. data/spec/dummy/solr/test/data/tlog/{tlog.0000000000000016453 → tlog.0000000000000000243} +0 -0
  234. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000244 +0 -0
  235. data/spec/dummy/solr/test/data/tlog/{tlog.0000000000000016455 → tlog.0000000000000000245} +0 -0
  236. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000246 +0 -0
  237. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000247 +0 -0
  238. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000248 +0 -0
  239. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  240. data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
  241. data/spec/factories/create_types.rb +13 -0
  242. data/spec/factories/produce_types.rb +13 -0
  243. data/spec/factories/realize_types.rb +13 -0
  244. data/spec/fixtures/agent_import_files.yml +1 -5
  245. data/spec/fixtures/agents.yml +0 -2
  246. data/spec/fixtures/import_requests.yml +0 -4
  247. data/spec/fixtures/items.yml +0 -2
  248. data/spec/fixtures/manifestation_checkout_stats.yml +0 -2
  249. data/spec/fixtures/manifestation_reserve_stats.yml +0 -2
  250. data/spec/fixtures/manifestations.yml +0 -2
  251. data/spec/fixtures/message_requests.yml +0 -2
  252. data/spec/fixtures/messages.yml +0 -4
  253. data/spec/fixtures/resource_export_files.yml +26 -0
  254. data/spec/fixtures/resource_import_files.yml +1 -4
  255. data/spec/fixtures/user_checkout_stats.yml +0 -2
  256. data/spec/fixtures/user_reserve_stats.yml +0 -2
  257. data/spec/models/agent_import_file_spec.rb +14 -8
  258. data/spec/models/agent_spec.rb +4 -6
  259. data/spec/models/import_request_spec.rb +0 -2
  260. data/spec/models/item_spec.rb +7 -8
  261. data/spec/models/manifestation_spec.rb +8 -10
  262. data/spec/models/resource_export_file_spec.rb +28 -0
  263. data/spec/models/resource_import_file_spec.rb +15 -5
  264. data/spec/routing/manifestations_routing_spec.rb +1 -1
  265. data/spec/routing/resource_export_files_routing_spec.rb +35 -0
  266. data/spec/spec_helper.rb +3 -0
  267. data/spec/support/resque.rb +32 -0
  268. data/spec/views/import_requests/edit.html.erb_spec.rb +19 -0
  269. data/spec/views/import_requests/index.html.erb_spec.rb +33 -0
  270. data/spec/views/import_requests/new.html.erb_spec.rb +21 -0
  271. data/spec/views/import_requests/show.html.erb_spec.rb +22 -0
  272. data/spec/views/resource_export_files/edit.html.erb_spec.rb +16 -0
  273. data/spec/views/resource_export_files/index.html.erb_spec.rb +17 -0
  274. data/spec/views/resource_export_files/new.html.erb_spec.rb +16 -0
  275. data/spec/views/resource_export_files/show.html.erb_spec.rb +13 -0
  276. metadata +139 -157
  277. data/app/views/manifestations/_series_form.html.erb +0 -127
  278. data/spec/dummy/db/development.sqlite3 +0 -0
  279. data/spec/dummy/solr/default/data/index/_da.fdt +0 -0
  280. data/spec/dummy/solr/default/data/index/_da.fdx +0 -0
  281. data/spec/dummy/solr/default/data/index/_da.fnm +0 -0
  282. data/spec/dummy/solr/default/data/index/_da.nvd +0 -0
  283. data/spec/dummy/solr/default/data/index/_da.nvm +0 -0
  284. data/spec/dummy/solr/default/data/index/_da.si +0 -0
  285. data/spec/dummy/solr/default/data/index/_da_Lucene41_0.doc +0 -0
  286. data/spec/dummy/solr/default/data/index/_da_Lucene41_0.pos +0 -0
  287. data/spec/dummy/solr/default/data/index/_da_Lucene41_0.tim +0 -0
  288. data/spec/dummy/solr/default/data/index/_da_Lucene41_0.tip +0 -0
  289. data/spec/dummy/solr/default/data/index/segments_ip +0 -0
  290. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000668 +0 -0
  291. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000669 +0 -0
  292. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000670 +0 -0
  293. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000671 +0 -0
  294. data/spec/dummy/solr/test/data/index/segments_cp8 +0 -0
  295. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000016454 +0 -0
  296. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000016456 +0 -0
  297. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000016457 +0 -0
  298. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000016458 +0 -0
  299. data/spec/dummy/tmp/cache/assets/test/sprockets/01c388ec88c5fa6d00409d725549a506 +0 -0
  300. data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
  301. data/spec/dummy/tmp/cache/assets/test/sprockets/0c8f59d97121b79a2e2a0d009d6da9c3 +0 -0
  302. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  303. data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
  304. data/spec/dummy/tmp/cache/assets/test/sprockets/19a44bc29c5173edea456f9416243854 +0 -0
  305. data/spec/dummy/tmp/cache/assets/test/sprockets/2d65b40e585725207fd52ce4cf5134f4 +0 -0
  306. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  307. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  308. data/spec/dummy/tmp/cache/assets/test/sprockets/3fc2b4de95dbb94dfe82ccfc97265cc4 +0 -0
  309. data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
  310. data/spec/dummy/tmp/cache/assets/test/sprockets/4db7c7b5ea13aacccd89ea32460e2de0 +0 -0
  311. data/spec/dummy/tmp/cache/assets/test/sprockets/55de678ed3c84c51b3a4b4cf473da823 +0 -0
  312. data/spec/dummy/tmp/cache/assets/test/sprockets/64ee480e95febf6b404c1264755ea42e +0 -0
  313. data/spec/dummy/tmp/cache/assets/test/sprockets/7de140ed6f303b9d00d8d703cced3349 +0 -0
  314. data/spec/dummy/tmp/cache/assets/test/sprockets/80348afae86df384b25e1e3bff21b13e +0 -0
  315. data/spec/dummy/tmp/cache/assets/test/sprockets/814bc1bed3effa0bb4588eb8b75ab92a +0 -0
  316. data/spec/dummy/tmp/cache/assets/test/sprockets/8488002e0e6035b7d00c3800c2c0e27e +0 -0
  317. data/spec/dummy/tmp/cache/assets/test/sprockets/86dfe8a3e156aeb6ebcd456b2251fab7 +0 -0
  318. data/spec/dummy/tmp/cache/assets/test/sprockets/89c9228bae34e0ff18fd8fe7f6eb5847 +0 -0
  319. data/spec/dummy/tmp/cache/assets/test/sprockets/a2474b74df12470fb37c668b85b562c6 +0 -0
  320. data/spec/dummy/tmp/cache/assets/test/sprockets/a2ee8688f63b884277632a234086f7df +0 -0
  321. data/spec/dummy/tmp/cache/assets/test/sprockets/a3cea75f1356ef55329e78f86b4c72b1 +0 -0
  322. data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
  323. data/spec/dummy/tmp/cache/assets/test/sprockets/b0e11c6d89683eaa7256a44a164a2a12 +0 -0
  324. data/spec/dummy/tmp/cache/assets/test/sprockets/bf17ca8affe2a1febca7f2a4e37cd77b +0 -0
  325. data/spec/dummy/tmp/cache/assets/test/sprockets/c36b7431da1ae91722b1c4091e4ba084 +0 -0
  326. data/spec/dummy/tmp/cache/assets/test/sprockets/c40786442706ae0cc6c793c6ee2500d3 +0 -0
  327. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  328. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  329. data/spec/dummy/tmp/cache/assets/test/sprockets/e58908ad0ccad6546faf9bcab669b0cd +0 -0
  330. data/spec/dummy/tmp/cache/assets/test/sprockets/e8f801eeda49cba4a03cfd9e2a4562ae +0 -0
  331. data/spec/dummy/tmp/cache/assets/test/sprockets/eef93e7d091d8118419fb96adf80387b +0 -0
  332. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  333. data/spec/dummy/tmp/cache/assets/test/sprockets/fb91323d4585f2e27d281cdb4193beb1 +0 -0
  334. data/spec/dummy/tmp/cache/assets/test/sprockets/ff64e9ded481959dfa8c78718e59e607 +0 -0
@@ -7,3 +7,16 @@ FactoryGirl.define do
7
7
  note "MyText"
8
8
  end
9
9
  end
10
+
11
+ # == Schema Information
12
+ #
13
+ # Table name: create_types
14
+ #
15
+ # id :integer not null, primary key
16
+ # name :string(255)
17
+ # display_name :text
18
+ # note :text
19
+ # position :integer
20
+ # created_at :datetime not null
21
+ # updated_at :datetime not null
22
+ #
@@ -7,3 +7,16 @@ FactoryGirl.define do
7
7
  note "MyText"
8
8
  end
9
9
  end
10
+
11
+ # == Schema Information
12
+ #
13
+ # Table name: produce_types
14
+ #
15
+ # id :integer not null, primary key
16
+ # name :string(255)
17
+ # display_name :text
18
+ # note :text
19
+ # position :integer
20
+ # created_at :datetime not null
21
+ # updated_at :datetime not null
22
+ #
@@ -7,3 +7,16 @@ FactoryGirl.define do
7
7
  note "MyText"
8
8
  end
9
9
  end
10
+
11
+ # == Schema Information
12
+ #
13
+ # Table name: realize_types
14
+ #
15
+ # id :integer not null, primary key
16
+ # name :string(255)
17
+ # display_name :text
18
+ # note :text
19
+ # position :integer
20
+ # created_at :datetime not null
21
+ # updated_at :datetime not null
22
+ #
@@ -6,21 +6,18 @@ agent_import_file_00001:
6
6
  agent_import_file_size: 1
7
7
  user_id: 1
8
8
  agent_import_content_type: text/csv
9
- state: completed
10
9
  agent_import_file_00002:
11
10
  id: 2
12
11
  agent_import_file_name: MyString
13
12
  agent_import_file_size: 1
14
13
  user_id: 1
15
14
  agent_import_content_type: text/csv
16
- state: pending
17
15
  agent_import_file_00003:
18
16
  id: 3
19
17
  agent_import_file_name: MyString
20
18
  agent_import_file_size: 1
21
19
  user_id: 1
22
20
  agent_import_content_type: text/csv
23
- state: pending
24
21
 
25
22
  # == Schema Information
26
23
  #
@@ -33,7 +30,6 @@ agent_import_file_00003:
33
30
  # user_id :integer
34
31
  # note :text
35
32
  # executed_at :datetime
36
- # state :string(255)
37
33
  # agent_import_file_name :string(255)
38
34
  # agent_import_content_type :string(255)
39
35
  # agent_import_file_size :integer
@@ -43,5 +39,5 @@ agent_import_file_00003:
43
39
  # agent_import_fingerprint :string(255)
44
40
  # error_message :text
45
41
  # edit_mode :string(255)
42
+ # user_encoding :string(255)
46
43
  #
47
-
@@ -323,7 +323,6 @@ agent_00202:
323
323
  # note :text
324
324
  # required_role_id :integer default(1), not null
325
325
  # required_score :integer default(0), not null
326
- # state :string(255)
327
326
  # email :text
328
327
  # url :text
329
328
  # full_name_alternative_transcription :text
@@ -331,4 +330,3 @@ agent_00202:
331
330
  # death_date :string(255)
332
331
  # agent_identifier :string(255)
333
332
  #
334
-
@@ -2,13 +2,11 @@
2
2
 
3
3
  one:
4
4
  isbn: '978-4774142043'
5
- state: pending
6
5
  manifestation_id: 1
7
6
  user_id: 1
8
7
 
9
8
  two:
10
9
  isbn: '978-4774141640'
11
- state: pending
12
10
  manifestation_id: 2
13
11
  user_id: 1
14
12
 
@@ -18,10 +16,8 @@ two:
18
16
  #
19
17
  # id :integer not null, primary key
20
18
  # isbn :string(255)
21
- # state :string(255)
22
19
  # manifestation_id :integer
23
20
  # user_id :integer
24
21
  # created_at :datetime not null
25
22
  # updated_at :datetime not null
26
23
  #
27
-
@@ -247,7 +247,6 @@ item_00023:
247
247
  # price :integer
248
248
  # lock_version :integer default(0), not null
249
249
  # required_role_id :integer default(1), not null
250
- # state :string(255)
251
250
  # required_score :integer default(0), not null
252
251
  # acquired_at :datetime
253
252
  # bookstore_id :integer
@@ -255,4 +254,3 @@ item_00023:
255
254
  # circulation_status_id :integer default(5), not null
256
255
  # checkout_type_id :integer default(1), not null
257
256
  #
258
-
@@ -5,14 +5,12 @@ one:
5
5
  start_date: 2008-12-12 17:00:38
6
6
  end_date: 2008-12-13 17:00:38
7
7
  note: MyText
8
- state: pending
9
8
 
10
9
  two:
11
10
  id: 2
12
11
  start_date: 2008-12-12 17:00:38
13
12
  end_date: 2008-12-13 17:00:38
14
13
  note: MyText
15
- state: pending
16
14
 
17
15
  # == Schema Information
18
16
  #
@@ -5,14 +5,12 @@ one:
5
5
  start_date: 2008-12-17 04:07:24
6
6
  end_date: 2008-12-18 04:07:24
7
7
  note: MyText
8
- state: pending
9
8
 
10
9
  two:
11
10
  id: 2
12
11
  start_date: 2008-12-17 04:07:24
13
12
  end_date: 2008-12-18 04:07:24
14
13
  note: MyText
15
- state: pending
16
14
 
17
15
  # == Schema Information
18
16
  #
@@ -1850,7 +1850,6 @@ manifestation_00216:
1850
1850
  # repository_content :boolean default(FALSE), not null
1851
1851
  # lock_version :integer default(0), not null
1852
1852
  # required_role_id :integer default(1), not null
1853
- # state :string(255)
1854
1853
  # required_score :integer default(0), not null
1855
1854
  # frequency_id :integer default(1), not null
1856
1855
  # subscription_master :boolean default(FALSE), not null
@@ -1880,4 +1879,3 @@ manifestation_00216:
1880
1879
  # periodical :boolean
1881
1880
  # statement_of_responsibility :text
1882
1881
  #
1883
-
@@ -4,13 +4,11 @@ one:
4
4
  sender_id: 1
5
5
  receiver_id: 1
6
6
  message_template_id: 1
7
- state: pending
8
7
 
9
8
  two:
10
9
  sender_id: 1
11
10
  receiver_id: 1
12
11
  message_template_id: 1
13
- state: pending
14
12
 
15
13
  # == Schema Information
16
14
  #
@@ -6,7 +6,6 @@ user1_to_user2_1:
6
6
  body: 'Abby, you get the first message'
7
7
  created_at: 2007-07-04 12:10:47.0
8
8
  read_at: <%= 3.days.ago.to_s :db %>
9
- state: unread
10
9
  lft: 1
11
10
  rgt: 2
12
11
  user2_to_user1_1:
@@ -16,7 +15,6 @@ user2_to_user1_1:
16
15
  subject: 'RE: First Message'
17
16
  body: 'Thanks Dad! You are the coolest!'
18
17
  created_at: <%= 2.days.ago.to_s :db %>
19
- state: unread
20
18
  lft: 3
21
19
  rgt: 4
22
20
  user1_to_librarian_2:
@@ -26,7 +24,6 @@ user1_to_librarian_2:
26
24
  subject: 'Second Message'
27
25
  body: 'Catie, you get the 2nd message'
28
26
  created_at: <%= 1.days.ago.to_s :db %>
29
- state: unread
30
27
  lft: 5
31
28
  rgt: 6
32
29
  librarian2_to_user2:
@@ -36,7 +33,6 @@ librarian2_to_user2:
36
33
  subject: 'Dad!'
37
34
  body: 'He is sucha dork.'
38
35
  created_at: <%= 2.days.ago.to_s :db %>
39
- state: unread
40
36
  lft: 7
41
37
  rgt: 8
42
38
 
@@ -0,0 +1,26 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ resource_export_file_00001:
4
+ id: 1
5
+ user_id: 1
6
+ resource_export_file_00002:
7
+ id: 2
8
+ user_id: 1
9
+ resource_export_file_00003:
10
+ id: 3
11
+ user_id: 1
12
+
13
+ # == Schema Information
14
+ #
15
+ # Table name: resource_export_files
16
+ #
17
+ # id :integer not null, primary key
18
+ # user_id :integer
19
+ # resource_export_file_name :string(255)
20
+ # resource_export_content_type :string(255)
21
+ # resource_export_file_size :integer
22
+ # resource_export_updated_at :datetime
23
+ # executed_at :datetime
24
+ # created_at :datetime not null
25
+ # updated_at :datetime not null
26
+ #
@@ -6,21 +6,18 @@ resource_import_file_00001:
6
6
  resource_import_file_size: 1
7
7
  user_id: 1
8
8
  resource_import_content_type: text/csv
9
- state: completed
10
9
  resource_import_file_00002:
11
10
  id: 2
12
11
  resource_import_file_name: MyString
13
12
  resource_import_file_size: 1
14
13
  user_id: 1
15
14
  resource_import_content_type: text/csv
16
- state: pending
17
15
  resource_import_file_00003:
18
16
  id: 3
19
17
  resource_import_file_name: MyString
20
18
  resource_import_file_size: 1
21
19
  user_id: 1
22
20
  resource_import_content_type: text/csv
23
- state: pending
24
21
 
25
22
  # == Schema Information
26
23
  #
@@ -33,7 +30,6 @@ resource_import_file_00003:
33
30
  # user_id :integer
34
31
  # note :text
35
32
  # executed_at :datetime
36
- # state :string(255)
37
33
  # resource_import_file_name :string(255)
38
34
  # resource_import_content_type :string(255)
39
35
  # resource_import_file_size :integer
@@ -43,5 +39,6 @@ resource_import_file_00003:
43
39
  # edit_mode :string(255)
44
40
  # resource_import_fingerprint :string(255)
45
41
  # error_message :text
42
+ # user_encoding :string(255)
46
43
  #
47
44
 
@@ -5,14 +5,12 @@ one:
5
5
  start_date: 2008-12-15 18:43:02
6
6
  end_date: 2008-12-16 18:43:02
7
7
  note: MyText
8
- state: pending
9
8
 
10
9
  two:
11
10
  id: 2
12
11
  start_date: 2008-12-15 18:43:02
13
12
  end_date: 2008-12-16 18:43:02
14
13
  note: MyText
15
- state: pending
16
14
  # == Schema Information
17
15
  #
18
16
  # Table name: user_checkout_stats
@@ -5,14 +5,12 @@ one:
5
5
  start_date: 2008-12-20 11:36:28
6
6
  end_date: 2008-12-21 11:36:28
7
7
  note: MyText
8
- state: pending
9
8
 
10
9
  two:
11
10
  id: 2
12
11
  start_date: 2008-12-20 11:36:28
13
12
  end_date: 2008-12-21 11:36:28
14
13
  note: MyText
15
- state: pending
16
14
  # == Schema Information
17
15
  #
18
16
  # Table name: user_reserve_stats
@@ -12,7 +12,7 @@ describe AgentImportFile do
12
12
  it "should be imported" do
13
13
  old_agents_count = Agent.count
14
14
  old_import_results_count = AgentImportResult.count
15
- @file.state.should eq 'pending'
15
+ @file.current_state.should eq 'pending'
16
16
  @file.import_start.should eq({:agent_imported => 3, :user_imported => 0, :failed => 0})
17
17
  Agent.order('id DESC')[0].full_name.should eq '原田 ushi 隆史'
18
18
  Agent.order('id DESC')[1].full_name.should eq '田辺浩介'
@@ -20,8 +20,8 @@ describe AgentImportFile do
20
20
  Agent.count.should eq old_agents_count + 3
21
21
  AgentImportResult.count.should eq old_import_results_count + 4
22
22
 
23
- @file.agent_import_fingerprint.should be_true
24
- @file.executed_at.should be_true
23
+ @file.agent_import_fingerprint.should be_truthy
24
+ @file.executed_at.should be_truthy
25
25
  end
26
26
  end
27
27
 
@@ -33,7 +33,7 @@ describe AgentImportFile do
33
33
  it "should be imported" do
34
34
  old_agents_count = Agent.count
35
35
  old_import_results_count = AgentImportResult.count
36
- @file.state.should eq 'pending'
36
+ @file.current_state.should eq 'pending'
37
37
  @file.import_start.should eq({:agent_imported => 4, :user_imported => 0, :failed => 0})
38
38
  Agent.count.should eq old_agents_count + 4
39
39
  Agent.order('id DESC')[0].full_name.should eq '原田 ushi 隆史'
@@ -43,8 +43,8 @@ describe AgentImportFile do
43
43
  Agent.order('id DESC')[1].email.should eq 'tanabe@library.example.jp'
44
44
  AgentImportResult.count.should eq old_import_results_count + 5
45
45
 
46
- @file.agent_import_fingerprint.should be_true
47
- @file.executed_at.should be_true
46
+ @file.agent_import_fingerprint.should be_truthy
47
+ @file.executed_at.should be_truthy
48
48
  end
49
49
  end
50
50
 
@@ -69,6 +69,13 @@ describe AgentImportFile do
69
69
  Agent.count.should eq old_count - 7
70
70
  end
71
71
  end
72
+
73
+ it "should import in background" do
74
+ file = AgentImportFile.create :agent_import => File.new("#{Rails.root.to_s}/../../examples/agent_import_file_sample1.tsv")
75
+ file.user = users(:admin)
76
+ file.save
77
+ AgentImportFileQueue.perform(file.id).should be_truthy
78
+ end
72
79
  end
73
80
 
74
81
  # == Schema Information
@@ -82,7 +89,6 @@ end
82
89
  # user_id :integer
83
90
  # note :text
84
91
  # executed_at :datetime
85
- # state :string(255)
86
92
  # agent_import_file_name :string(255)
87
93
  # agent_import_content_type :string(255)
88
94
  # agent_import_file_size :integer
@@ -92,5 +98,5 @@ end
92
98
  # agent_import_fingerprint :string(255)
93
99
  # error_message :text
94
100
  # edit_mode :string(255)
101
+ # user_encoding :string(255)
95
102
  #
96
-
@@ -26,19 +26,19 @@ describe Agent do
26
26
  end
27
27
 
28
28
  it "should be creator" do
29
- agents(:agent_00001).creator?(manifestations(:manifestation_00001)).should be_true
29
+ agents(:agent_00001).creator?(manifestations(:manifestation_00001)).should be_truthy
30
30
  end
31
31
 
32
32
  it "should not be creator" do
33
- agents(:agent_00010).creator?(manifestations(:manifestation_00001)).should be_false
33
+ agents(:agent_00010).creator?(manifestations(:manifestation_00001)).should be_falsy
34
34
  end
35
35
 
36
36
  it "should be publisher" do
37
- agents(:agent_00001).publisher?(manifestations(:manifestation_00001)).should be_true
37
+ agents(:agent_00001).publisher?(manifestations(:manifestation_00001)).should be_truthy
38
38
  end
39
39
 
40
40
  it "should not be publisher" do
41
- agents(:agent_00010).publisher?(manifestations(:manifestation_00001)).should be_false
41
+ agents(:agent_00010).publisher?(manifestations(:manifestation_00001)).should be_falsy
42
42
  end
43
43
  end
44
44
 
@@ -87,7 +87,6 @@ end
87
87
  # note :text
88
88
  # required_role_id :integer default(1), not null
89
89
  # required_score :integer default(0), not null
90
- # state :string(255)
91
90
  # email :text
92
91
  # url :text
93
92
  # full_name_alternative_transcription :text
@@ -95,4 +94,3 @@ end
95
94
  # death_date :string(255)
96
95
  # agent_identifier :string(255)
97
96
  #
98
-