Sha256: 7f99303bf92ad6c37970e95bdca5962d95d45e4c6d3c1f431fd25aa4f17f01a6
Contents?: true
Size: 632 Bytes
Versions: 61
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true require 'avm/projects/stereotype' require 'eac_launcher/ruby/gem/specification' require 'eac_ruby_utils/core_ext' module Avm module Projects module Stereotypes class RubyGem require_sub __FILE__ include Avm::Projects::Stereotype class << self def match?(path) Dir.glob(File.join(path.real, '*.gemspec')).any? end def color :red end def load_gemspec(gemspec_file) ::EacLauncher::Ruby::Gem::Specification.new(gemspec_file) end end end end end end
Version data entries
61 entries across 61 versions & 1 rubygems