2014-05-05 08:20:37 +00:00
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
|
|
|
|
# Maintain your gem's version:
|
2015-01-06 05:46:22 +00:00
|
|
|
require "web_resource/version"
|
2021-10-12 13:41:30 +00:00
|
|
|
bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install'
|
|
|
|
if bundle_update_flag
|
|
|
|
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 "Updating websource to #{folder}"
|
|
|
|
rescue
|
|
|
|
puts "error updating websource in #{folder}"
|
|
|
|
end
|
2021-04-01 09:20:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-05-05 08:20:37 +00:00
|
|
|
# Describe your gem and declare its dependencies:
|
|
|
|
Gem::Specification.new do |s|
|
2015-01-06 05:46:22 +00:00
|
|
|
s.name = "web_resource"
|
|
|
|
s.version = WebResource::VERSION
|
2014-05-05 08:20:37 +00:00
|
|
|
s.authors = ["Ruling Digital"]
|
|
|
|
s.email = ["orbit@rulingcom.com"]
|
|
|
|
s.homepage = "http://www.rulingcom.com"
|
2015-01-06 05:46:22 +00:00
|
|
|
s.summary = "Web Resource for orbit"
|
|
|
|
s.description = "Web Resource for orbit"
|
2014-05-05 08:20:37 +00:00
|
|
|
s.license = "MIT"
|
|
|
|
|
|
|
|
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
|
|
|
|
s.test_files = Dir["test/**/*"]
|
|
|
|
end
|