Sha256: 5af5c65efe27833daaab164bd64cfa03db40208e52c459d6c7dcc4d24ce6c423
Contents?: true
Size: 1.95 KB
Versions: 13
Compression:
Stored size: 1.95 KB
Contents
class Jets::Builders class GemReplacer extend Memoist def initialize(options) @options = options end def run check = Jets::Gems::Check.new found_gems = check.run! # exits early if missing gems found # Reaching here means its safe to download and extract the gems found_gems.each do |gem_name, source| options = @options.merge(source_url: source) gem_extractor = Jets::Gems::Extract::Gem.new(gem_name, options) gem_extractor.run end tidy end def sh(command) puts "=> #{command}".colorize(:green) success = system(command) abort("Command Failed") unless success success end def ruby_folder Jets::Gems.ruby_folder end # remove unnecessary files to reduce package size def tidy # project_root: /tmp/jets/demo/stage/code/ # /tmp/jets/demo/stage/code/bundled tidy_gems("#{@options[:project_root]}/ruby/gems/#{ruby_folder}/*/gems/*") tidy_gems("#{@options[:project_root]}/ruby/gems/#{ruby_folder}/*/bundler/gems/*") end def tidy_gems(gems_path) Dir.glob(gems_path).each do |gem_path| tidy_gem(gem_path) end end # Clean up some unneeded files to try to keep the package size down # In a generated jets app this made a decent 9% difference: # 175M test2 # 191M test3 def tidy_gem(path) # remove top level tests and cache folders Dir.glob("#{path}/*").each do |path| next unless File.directory?(path) folder = File.basename(path) if %w[test tests spec features benchmark cache doc].include?(folder) FileUtils.rm_rf(path) end end Dir.glob("#{path}/**/*").each do |path| next unless File.file?(path) ext = File.extname(path) if %w[.rdoc .md .markdown].include?(ext) or path =~ /LICENSE|CHANGELOG|README/ FileUtils.rm_f(path) end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems