Sha256: 9aa3087563378451ba44ce6f67b250655e0c1e803abeea06b772275edfef29ea

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

require "core/constants"
module Radon
class Environments
  @@all = {
          'gradle' => File.join(DATA_DIR, "gradle.zip"),
          'java'   => File.join(DATA_DIR, "java.zip"),
          'maven'  => File.join(DATA_DIR, "maven.zip"),
          'python' => File.join(DATA_DIR, "python.zip"),
          'c' => File.join(DATA_DIR, "c.zip"),
          'ruby (beta)'   => File.join(DATA_DIR, "ruby.zip"),
          'crystal'=> File.join(DATA_DIR, "crystal_app.zip")
        }

  # Gets all environments as an array of strings      
  def self.getAllNames
    @@all.keys
  end

  # Gets the value (corrosponding zip) of the key
  def self.getTargetOf(key)
    @@all[key]
  end

  def self.extract(key, target)
    case key
    when 'gradle'
      extract_gradle(target)
    when 'java'
      extract_java(target)
    when 'python'
      extract_python(target)
    when 'ruby'
      extract_ruby(target)
    when 'maven'
      extract_maven(target)
    when 'c'
      extract_c(target)
    when 'crystal'
      extract_crystal(target)
    else
      error("#{key} is not a supported environment.\nYou can suggest it be added at https://github.com/cbrnrd/radon/issues")
    end
  end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
radon-0.1.3 lib/core/environments.rb