Sha256: 7f640cbf45972c4869c0ddab249f72cfe186c1b22691bdea7d3d7e1abcada1de
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 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"), 'ruby (beta)' => File.join(DATA_DIR, "ruby.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) 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.1 | lib/core/environments.rb |