Skip to content

Commit

Permalink
Merge pull request #3809 from ember-cli/pr-3779
Browse files Browse the repository at this point in the history
Pr 3779
  • Loading branch information
stefanpenner committed Apr 6, 2015
2 parents cbd2f8f + 2892a1a commit c8796ff
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/models/command.js
Expand Up @@ -3,9 +3,9 @@
var nopt = require('nopt');
var chalk = require('chalk');
var path = require('path');
var isGitRepo = require('is-git-url');
var camelize = require('../utilities/string').camelize;
var getCallerFile = require('../utilities/get-caller-file');
var isGitRepo = require('../utilities/git-repo');
var Promise = require('../ext/promise');
var union = require('lodash/array/union');
var uniq = require('lodash/array/uniq');
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/install-blueprint.js
Expand Up @@ -2,8 +2,8 @@

var Blueprint = require('../models/blueprint');
var Task = require('../models/task');
var isGitRepo = require('../utilities/git-repo');
var Promise = require('../ext/promise');
var isGitRepo = require('is-git-url');
var temp = require('temp');
var childProcess = require('child_process');
var path = require('path');
Expand Down
8 changes: 0 additions & 8 deletions lib/utilities/git-repo.js

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -101,6 +101,7 @@
"http-proxy": "^1.9.0",
"inflection": "^1.7.0",
"inquirer": "0.5.1",
"is-git-url": "^0.2.0",
"js-string-escape": "^1.0.0",
"leek": "0.0.18",
"lodash": "^3.6.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/utilities/git-repo-test.js
@@ -1,6 +1,6 @@
'use strict';

var isGitRepo = require('../../../lib/utilities/git-repo');
var isGitRepo = require('is-git-url');
var expect = require('chai').expect;

describe('cleanBaseURL()', function() {
Expand Down

0 comments on commit c8796ff

Please sign in to comment.