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