au 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1f863f4f77ac12d48c9cc1fce11cf11745fe17752eff77e6d7800d78bfbac33
4
- data.tar.gz: ef650acf468825bc91bf40653c748dce3d8fc95917e66d6df178b8c29f391d6e
3
+ metadata.gz: 8aceb62d4fb9f007f9fd868f1dda7da7da77a809af473c64ab676ce0432434f4
4
+ data.tar.gz: 23097866e82fbfcf04c809da185eea97c70771e958b751457bae0d1c61ec386f
5
5
  SHA512:
6
- metadata.gz: f77dc0459d3585eb6a974650ccf2ffeef1aed8893a897ca52a8c3793ab1cdf220f7135c424e9718cbe374ea60df309217d0027f6839678cc5cae55cfbc2b657c
7
- data.tar.gz: b1a17e0618cc0e5b87aa6e52ec77b2f796958d21c226cd96f88ea72362a96e5121543037a63e6925f83435b43f97d6d35e99ea0676e0b0ebfa09ea3c23275837
6
+ metadata.gz: 23a2ff2870a3641dd59598d1da4adf964ceba36013db2c8df81fc605fddc4e3ea7bdee2cffd5c1e8577a56ffbde658ef6069a177efc586e1196fdb63d2d3ecee
7
+ data.tar.gz: c9de172bc533ce74819b3dc719fffd667b643cd2687616bb44ab3698c4df4c4569335d38597c7319844db6603e12b6d8b551682c6da82e60a615e40960d5140e
@@ -17,9 +17,9 @@ Commands:
17
17
 
18
18
  # Check out a commit. Similar behavior with git checkout.
19
19
 
20
- au clone REMOTE_PATH [optional: LOCAL_PATH]
20
+ au clone SOURCE_REPO_PATH (required) TARGET_REPO_PATH (optional, default: current directory)
21
21
 
22
- # Copy an existing repo from the provided remote path.
22
+ # Copy an existing repo from the provided source path.
23
23
 
24
24
  au commit [-m MESSAGE]
25
25
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- au (0.2.1)
4
+ au (0.2.2)
5
5
  colorize
6
6
  thor
7
7
 
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 remote REMOTE_PATH", "Copy an existing repo"
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?
@@ -1,3 +1,3 @@
1
1
  module Au
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: au
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edward Du