Sha256: 440c1551c1f63243374f12072f2da6e107ac36e86d77fa6d7bb7e86ec6a68bd9

Contents?: true

Size: 397 Bytes

Versions: 7

Compression:

Stored size: 397 Bytes

Contents

// Site-specific Javascript

// return the version number of the latest released Gem
function getgemver () {
  // URL to the API...
  var APIurl = 'https://rubygems.org/api/v1/versions/update_repo/latest.json?callback=?';
  jQuery.getJSON( APIurl, function( data ) {
    console.log(data);
    jQuery("#version").text(data.version);
  });
}

jQuery(document).ready(function() {
  getgemver();
});

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
update_repo-0.11.3 web/js/site.js
update_repo-0.11.2 web/js/site.js
update_repo-0.11.1 web/js/site.js
update_repo-0.10.1 web/js/site.js
update_repo-0.9.10 web/js/site.js
update_repo-0.9.9 web/js/site.js
update_repo-0.9.8 web/js/site.js