Update personal_project.gemspec

add update modules feature
This commit is contained in:
chiu 2019-08-21 14:53:51 +08:00
parent 6eee1f6431
commit 79cc6b8168
1 changed files with 12 additions and 1 deletions

View File

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