au 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Design_Document.md +2 -2
- data/Gemfile.lock +1 -1
- data/bin/au +1 -1
- data/lib/au/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8aceb62d4fb9f007f9fd868f1dda7da7da77a809af473c64ab676ce0432434f4
|
|
4
|
+
data.tar.gz: 23097866e82fbfcf04c809da185eea97c70771e958b751457bae0d1c61ec386f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 23a2ff2870a3641dd59598d1da4adf964ceba36013db2c8df81fc605fddc4e3ea7bdee2cffd5c1e8577a56ffbde658ef6069a177efc586e1196fdb63d2d3ecee
|
|
7
|
+
data.tar.gz: c9de172bc533ce74819b3dc719fffd667b643cd2687616bb44ab3698c4df4c4569335d38597c7319844db6603e12b6d8b551682c6da82e60a615e40960d5140e
|
data/Design_Document.md
CHANGED
|
@@ -17,9 +17,9 @@ Commands:
|
|
|
17
17
|
|
|
18
18
|
# Check out a commit. Similar behavior with git checkout.
|
|
19
19
|
|
|
20
|
-
au clone
|
|
20
|
+
au clone SOURCE_REPO_PATH (required) TARGET_REPO_PATH (optional, default: current directory)
|
|
21
21
|
|
|
22
|
-
# Copy an existing repo from the provided
|
|
22
|
+
# Copy an existing repo from the provided source path.
|
|
23
23
|
|
|
24
24
|
au commit [-m MESSAGE]
|
|
25
25
|
|
data/Gemfile.lock
CHANGED
data/bin/au
CHANGED
|
@@ -20,7 +20,7 @@ module Au
|
|
|
20
20
|
puts 'Welcome to AU. Your project is now tracked.'
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
desc "clone
|
|
23
|
+
desc "clone SOURCE_REPO_PATH (required) TARGET_REPO_PATH (optional, default: current directory)", "Copy an existing repo"
|
|
24
24
|
def clone(remote_repo_root, target_repo_root = nil)
|
|
25
25
|
# default target path is the same with rename's name in current working directory
|
|
26
26
|
target_repo_root = File.join(Dir.pwd, File.basename(remote_repo_root)) if target_repo_root.nil?
|
data/lib/au/version.rb
CHANGED