parent
1466469da8
commit
e9e7616a04
|
@ -2,19 +2,6 @@ $:.push File.expand_path("../lib", __FILE__)
|
||||||
|
|
||||||
# Maintain your gem's version:
|
# Maintain your gem's version:
|
||||||
require "personal_journal/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:
|
# Describe your gem and declare its dependencies:
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = "personal_journal"
|
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.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
|
||||||
s.test_files = Dir["test/**/*"]
|
s.test_files = Dir["test/**/*"]
|
||||||
end
|
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