Update personal_journal.gemspec

fix?
This commit is contained in:
chiu 2019-08-21 14:28:13 +08:00
parent 1466469da8
commit e9e7616a04
1 changed files with 11 additions and 13 deletions

View File

@ -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