From ea9f1e594d2b298b86b66352abdda3756d663c6d Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 14 Jun 2023 11:53:24 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E3=80=8Cad=5Fbanner.gemspec?= =?UTF-8?q?=E3=80=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ad_banner.gemspec | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/ad_banner.gemspec b/ad_banner.gemspec index 8be008d..b834daf 100644 --- a/ad_banner.gemspec +++ b/ad_banner.gemspec @@ -2,6 +2,23 @@ $:.push File.expand_path("../lib", __FILE__) # Maintain your gem's version: require "ad_banner/version" + +# Describe your gem and declare its dependencies: +Gem::Specification.new do |s| + s.name = "ad_banner" + s.version = AdBanner::VERSION + s.authors = ["Ruling Digital"] + s.email = ["orbit@rulingcom.com"] + s.homepage = "http://www.rulingcom.com" + s.summary = "Ad Banner management" + s.description = "Create Banners for Orbit" + s.license = "MIT" + s.add_dependency('zip-zip', ["~> 0.3"]) + + s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] + s.test_files = Dir["test/**/*"] +end + bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install' if bundle_update_flag require "fileutils" @@ -55,18 +72,3 @@ if bundle_update_flag end end #./ffmpeg -i 2.mp4 -c:v libvpx-vp9 -crf 35 -b:v 0 -b:a 96k -c:a libopus -filter:v fps=20 output.webm -cpu-used 4 -# Describe your gem and declare its dependencies: -Gem::Specification.new do |s| - s.name = "ad_banner" - s.version = AdBanner::VERSION - s.authors = ["Ruling Digital"] - s.email = ["orbit@rulingcom.com"] - s.homepage = "http://www.rulingcom.com" - s.summary = "Ad Banner management" - s.description = "Create Banners for Orbit" - s.license = "MIT" - s.add_dependency('zip-zip', ["~> 0.3"]) - - s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] - s.test_files = Dir["test/**/*"] -end