pantograph/lib/pantograph/actions/import_from_git.rb in pantograph-0.1.20 vs pantograph/lib/pantograph/actions/import_from_git.rb in pantograph-0.1.21

- old
+ new

@@ -57,23 +57,23 @@ def self.example_code [ ' # Simple import on master branch import_from_git( - url: "git@github.com:johnknapprs/pantograph.git" + url: "git@github.com:urbanquakers/pantograph.git" ) ', ' # Import a Pantfile with an Optimistic version match operator import_from_git( - url: "git@github.com:johnknapprs/pantograph.git", + url: "git@github.com:urbanquakers/pantograph.git", branch: "master", path: "pantograph/Pantfile", version: "~> 1.0.0" ) ', ' # Import a Pantfile with multiple version conditions import_from_git( - url: "git@github.com:johnknapprs/pantograph.git", # The URL of the repository to import the Pantfile from. + url: "git@github.com:urbanquakers/pantograph.git", # The URL of the repository to import the Pantfile from. branch: "development", # The branch to checkout on the repository version: [">= 1.1.0", "< 2.0.0"] ) ' ]