This commit is contained in:
BoHung Chiu 2021-07-23 16:45:03 +08:00
parent a9ea5102ac
commit 450491668c
1 changed files with 13 additions and 11 deletions

View File

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