Removed Ruby support

[#179247162]
This commit is contained in:
Steve Gravrock
2021-08-30 18:53:13 -07:00
parent a63b0b0368
commit 37b9f8e420
10 changed files with 6 additions and 172 deletions
-14
View File
@@ -1,14 +0,0 @@
var grunt = require("grunt");
function gemLib(path) { return './lib/jasmine-core/' + path; }
function nodeToRuby(version) { return version.replace('-', '.'); }
module.exports = {
copyToGem: function() {
var versionRb = grunt.template.process(
grunt.file.read("grunt/templates/version.rb.jst"),
{ data: { jasmineVersion: nodeToRuby(global.jasmineVersion) }});
grunt.file.write(gemLib("version.rb"), versionRb);
}
};