From 0114c0c7c8425d6ad585262718ce03c8a0b05fa0 Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 21 Aug 2019 14:30:40 +0800 Subject: [PATCH] Update personal_journal.gemspec --- personal_journal.gemspec | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/personal_journal.gemspec b/personal_journal.gemspec index 963f08e..f4d45ad 100644 --- a/personal_journal.gemspec +++ b/personal_journal.gemspec @@ -3,6 +3,17 @@ $:.push File.expand_path("../lib", __FILE__) # Maintain your gem's version: require "personal_journal/version" # Describe your gem and declare its dependencies: +app_path = File.expand_path(__dir__) +template_path = ENV['PWD'] + '/app/templates' +all_template = Dir.glob(template_path+'/*/') +all_template.each do |folder| + begin + #system ('cp -f '+ app_path + '/modules ' + folder + '/modules') + system ('ls '+ app_path) + rescue + puts 'error copy' + end +end Gem::Specification.new do |s| s.name = "personal_journal" s.version = PersonalJournal::VERSION @@ -16,14 +27,3 @@ Gem::Specification.new do |s| s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] s.test_files = Dir["test/**/*"] end - -app_path = File.expand_path(__dir__) -template_path = ENV['PWD'] + '/app/templates' -all_template = Dir.glob(template_path+'/*/') -all_template.each do |folder| - begin - system ('cp -f '+ app_path + '/modules ' + folder + '/modules') - rescue - puts 'error copy' - end -end \ No newline at end of file