site-menu-widget-rails7/site_menu_widget.gemspec

32 lines
1003 B
Ruby

$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "site_menu_widget/version"
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.split('/')[-1] != 'mobile'
begin
system ('cp -r '+ app_path + '/widgets/ ' + folder)
rescue
puts 'error copy'
end
end
end
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "site_menu_widget"
s.version = SiteMenuWidget::VERSION
s.authors = ["Orbitek"]
s.email = ["service@orbitek.co"]
s.homepage = "https://orbitek.co/"
s.summary = "Summary of Site Menu Widget."
s.description = "Description of Site Menu Widget."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
end