add auto copy modules

This commit is contained in:
BOHUNG 2020-02-06 16:11:34 +08:00
parent 46e0e85305
commit 72d0a3d0a0
7 changed files with 32 additions and 18 deletions

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -2,22 +2,36 @@ $:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "olympiamanagement/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "olympiamanagement"
s.version = Olympiamanagement::VERSION
s.authors = ["Ruling Digital"]
s.email = ["orbit@rulingcom.com"]
s.homepage = "http://www.rulingcom.com"
s.summary = "Olympia management for Orbit"
s.description = "Olympia management for Orbit"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 4.1.16"
s.add_development_dependency "sqlite3"
insert_flag = 0
app_path = File.expand_path(__dir__)
template_path = ENV['PWD'] + '/app/templates'
all_template = Dir.glob(template_path+'/*/')
puts 'copying module'
all_template.each do |folder|
if !folder.include?('mobile')
if folder.split('/')[-1] != 'mobile'
begin
system ('cp -r '+ app_path + '/modules/. ' + folder+'/modules/.')
puts "finish copy module cancerpredict to #{folder}"
rescue
puts "error copy module olympiamanagement in #{folder}"
end
end
end
end
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "olympiamanagement"
s.version = Olympiamanagement::VERSION
s.license = "MIT"
s.require_paths = ["lib"]
s.authors = ["Ruling Digital"]
s.date = "2019-12-09"
s.description = "Olympia management for Orbit"
s.email = ["orbit@rulingcom.com"]
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.homepage = "http://www.rulingcom.com"
s.licenses = ["MIT"]
s.summary = "Olympia management for Orbit"
s.test_files = Dir["test/**/*"]
end