Class: Jets::Builders::GemReplacer

Inherits:
Object
  • Object
show all
Extended by:
Memoist
Defined in:
lib/jets/builders/gem_replacer.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ GemReplacer

Returns a new instance of GemReplacer.



4
5
6
# File 'lib/jets/builders/gem_replacer.rb', line 4

def initialize(options)
  @options = options
end

Instance Method Details

#ruby_folderObject



34
35
36
# File 'lib/jets/builders/gem_replacer.rb', line 34

def ruby_folder
  Jets::Gems.ruby_folder
end

#runObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/jets/builders/gem_replacer.rb', line 8

def run
  check = Jets::Gems::Check.new
  if Jets.config.lambda.layers.empty?
    found_gems = check.run! # exits early if missing gems found
  else
    # assumes missing gems are in the provided custom layer by the user
    found_gems = check.run # does not exist early
  end

  # found gems will only have gems that were found
  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

#sh(command) ⇒ Object



27
28
29
30
31
32
# File 'lib/jets/builders/gem_replacer.rb', line 27

def sh(command)
  puts "=> #{command}".color(:green)
  success = system(command)
  abort("Command Failed") unless success
  success
end

#tidyObject

remove unnecessary files to reduce package size



39
40
41
42
43
44
# File 'lib/jets/builders/gem_replacer.rb', line 39

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

#tidy_gem(path) ⇒ Object

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


56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/jets/builders/gem_replacer.rb', line 56

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

#tidy_gems(gems_path) ⇒ Object



46
47
48
49
50
# File 'lib/jets/builders/gem_replacer.rb', line 46

def tidy_gems(gems_path)
  Dir.glob(gems_path).each do |gem_path|
    tidy_gem(gem_path)
  end
end