fix error

This commit is contained in:
BOYA,CHIU 2021-07-16 17:56:38 +08:00
parent c5807ddcfd
commit 22f3b9dafb
2 changed files with 18 additions and 15 deletions

View File

@ -1,16 +1,16 @@
zh_tw:
text_marquee:
all: All
new: New
all: 全部
new: 新增
marquee_name: Marquee Name
categories: Category
categories: 類別
speed: 轉換速度
unit: 單位:毫秒
default_widget:
to_more: Read More
text_marquee_category_with_title: Category
text_marquee: Text Marquee
text_marquee_category_with_title: 類別
text_marquee: 跑馬燈
widget:
index: Text Marquee Widget
frontend:

View File

@ -2,16 +2,19 @@ $:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "text_marquee/version"
app_path = File.expand_path(__dir__)
template_path = ENV['PWD'] + '/app/templates'
all_template = Dir.glob(template_path+'/*/')
puts 'copying module'
all_template.each do |folder|
if folder.split('/')[-1] != 'mobile'
begin
system ('cp -r '+ app_path + '/modules/ ' + folder)
rescue
puts 'error copy'
bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install'
if bundle_update_flag
app_path = File.expand_path(__dir__)
template_path = ENV['PWD'] + '/app/templates'
all_template = Dir.glob(template_path+'/*/')
puts 'copying module'
all_template.each do |folder|
if folder.split('/')[-1] != 'mobile'
begin
system ('cp -r '+ app_path + '/modules/ ' + folder)
rescue
puts 'error copy'
end
end
end
end