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