Sha256: d305352f0992299629f551cad23f9ba0c18e9027c4160349fa7c6bd07bc5b083
Contents?: true
Size: 587 Bytes
Versions: 62
Compression:
Stored size: 587 Bytes
Contents
namespace :tkh_content do desc "Create migrations, locale, and other files" task :install do system 'rails g tkh_content:create_or_update_migrations' system 'rails g tkh_content:create_or_update_locales -f' system 'rails g tkh_content:create_or_update_files -f' end desc "Update files. Skip existing migrations and blog layout. Force overwrite locales" task :update do system 'rails g tkh_content:create_or_update_migrations -s' system 'rails g tkh_content:create_or_update_locales -f' system 'rails g tkh_content:create_or_update_files -s' end end
Version data entries
62 entries across 62 versions & 1 rubygems