From e9e7616a04b8eda943d66eac69a3d2979826a77e Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 21 Aug 2019 14:28:13 +0800 Subject: [PATCH] Update personal_journal.gemspec fix? --- personal_journal.gemspec | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/personal_journal.gemspec b/personal_journal.gemspec index 62740d2..963f08e 100644 --- a/personal_journal.gemspec +++ b/personal_journal.gemspec @@ -2,19 +2,6 @@ $:.push File.expand_path("../lib", __FILE__) # Maintain your gem's version: require "personal_journal/version" -require 'rails' -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 -#puts RAILS_ROOT -#system 'ruby get_rail_path.rb' # Describe your gem and declare its dependencies: Gem::Specification.new do |s| s.name = "personal_journal" @@ -29,3 +16,14 @@ 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