Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
atom / usr / share / atom / resources / app / apm / lib / docs.js
Size: Mime:
(function() {
  var Docs, View, config, open, yargs,
    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
    hasProp = {}.hasOwnProperty;

  yargs = require('yargs');

  open = require('open');

  View = require('./view');

  config = require('./apm');

  module.exports = Docs = (function(superClass) {
    extend(Docs, superClass);

    function Docs() {
      return Docs.__super__.constructor.apply(this, arguments);
    }

    Docs.commandNames = ['docs', 'home', 'open'];

    Docs.prototype.parseOptions = function(argv) {
      var options;
      options = yargs(argv).wrap(100);
      options.usage("\nUsage: apm docs [options] <package_name>\n\nOpen a package's homepage in the default browser.");
      options.alias('h', 'help').describe('help', 'Print this usage message');
      return options.boolean('p').alias('p', 'print').describe('print', 'Print the URL instead of opening it');
    };

    Docs.prototype.openRepositoryUrl = function(repositoryUrl) {
      return open(repositoryUrl);
    };

    Docs.prototype.run = function(options) {
      var callback, packageName;
      callback = options.callback;
      options = this.parseOptions(options.commandArgs);
      packageName = options.argv._[0];
      if (!packageName) {
        callback("Missing required package name");
        return;
      }
      return this.getPackage(packageName, options, (function(_this) {
        return function(error, pack) {
          var repository;
          if (error != null) {
            return callback(error);
          }
          if (repository = _this.getRepository(pack)) {
            if (options.argv.print) {
              console.log(repository);
            } else {
              _this.openRepositoryUrl(repository);
            }
            return callback();
          } else {
            return callback("Package \"" + packageName + "\" does not contain a repository URL");
          }
        };
      })(this));
    };

    return Docs;

  })(View);

}).call(this);