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(ruby_version, options) ⇒ GemReplacer

Returns a new instance of GemReplacer.



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

def initialize(ruby_version, options)
  @ruby_version = ruby_version
  @options = options
end

Instance Method Details

#move_opt_gems_to_vendorObject



28
29
30
31
32
33
34
35
36
# File 'lib/jets/builders/gem_replacer.rb', line 28

def move_opt_gems_to_vendor
  code = "#{Jets.build_root}/stage/code"
  opt_gems = "#{code}/opt/ruby/gems/#{Jets::Gems.ruby_folder}"
  vendor_gems = "#{code}/vendor/bundle/ruby/#{Jets::Gems.ruby_folder}"
  # https://unix.stackexchange.com/questions/146441/copy-over-existing-files-without-confirmation
  sh "yes | cp -rf #{opt_gems} #{vendor_gems}"
  # clean up opt compiled gems
  FileUtils.rm_rf("#{code}/opt/ruby")
end

#runObject



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

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

  # At this point the current compiled gems have been removed and compiled gems
  # have been unpacked to code/opt. We can take the unpacked gems in opt and fully
  # move them into vendor/bundle gems now.
  move_opt_gems_to_vendor

  tidy
end

#sh(command) ⇒ Object



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

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

#tidyObject

remove unnecessary files to reduce package size



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

def tidy
  # project_root: /tmp/jets/demo/stage/code/
  # /tmp/jets/demo/stage/code/bundled
  tidy_gems("#{@options[:project_root]}/bundled/gems/ruby/*/gems/*")
  tidy_gems("#{@options[:project_root]}/bundled/gems/ruby/*/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


63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/jets/builders/gem_replacer.rb', line 63

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



53
54
55
56
57
# File 'lib/jets/builders/gem_replacer.rb', line 53

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