require 'active_record/fixtures' require 'tasks/color' desc "create initial records for enju_library" namespace :enju_library do task :setup => :environment do Dir.glob(Rails.root.to_s + '/db/fixtures/enju_library/**/*.yml').each do |file| dirname = File.basename(File.dirname file) dirname = nil if dirname == "enju_library" basename = [ dirname, File.basename(file, ".*") ].compact basename = File.join(*basename) ActiveRecord::FixtureSet.create_fixtures('db/fixtures/enju_library', basename) end end desc "upgrade enju_library" task :upgrade => :environment do Rake::Task['statesman:backfill_most_recent'].invoke('UserExportFile') Rake::Task['statesman:backfill_most_recent'].invoke('UserImportFile') library_group = LibraryGroup.site_config library_group.user = User.find(1) login_ja = <<"EOS" このシステムはオープンソース図書館システム Next-L Enju です。このメッセージは管理者によって変更することができます。 EOS login_en = <<"EOS" Next-L Enju, an open-source integrated library system. You can edit this message after logging in as Administrator. EOS footer_ja = <<"EOS" [Next-L Enju Leaf #{EnjuLeaf::VERSION}](https://github.com/next-l/enju_leaf), オープンソース統合図書館システム Developed by [Kosuke Tanabe](https://github.com/nabeta) and [Project Next-L](http://www.next-l.jp) \| [このシステムについて](/page/about) \| [不具合を報告する](https://github.com/next-l/enju_leaf/issues) \| [マニュアル](https://next-l.github.com/manual/1.2/) EOS footer_en = <<"EOS" [Next-L Enju Leaf #{EnjuLeaf::VERSION}](https://github.com/next-l/enju_leaf), an open source integrated library system Developed by [Kosuke Tanabe](https://github.com/nabeta) and [Project Next-L](http://www.next-l.jp) \| [About this system](/page/about) \| [Report bugs](https://github.com/next-l/enju_leaf/issues) \| [Manual](https://next-l.github.com/manual/1.2/) EOS library_group.login_banner_ja = login_ja if library_group.login_banner_ja.blank? library_group.login_banner_en = login_en if library_group.login_banner_en.blank? library_group.footer_banner_ja = footer_ja if library_group.footer_banner_ja.blank? library_group.footer_banner_en = footer_en if library_group.footer_banner_en.blank? library_group.save puts 'enju_library: The upgrade completed successfully.' end end