Update personal_journal.gemspec
This commit is contained in:
parent
e9e7616a04
commit
0114c0c7c8
|
@ -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
|
Loading…
Reference in New Issue