aupair 0.1.2 → 0.1.3
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/README.md +17 -23
- data/lib/au_pair/setup.rb +1 -0
- data/lib/au_pair/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d12a0233ff7d6e7246660aa1af2b6be23f70b4d2
|
4
|
+
data.tar.gz: b65efcd6f5e07cdd8cf7f3e90d7ecf6b4a57a677
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd34cd1772b174e12239839224a328728c0f8336bc659eb53f85a0e5bbc62d115f66f85c43b068ca9a54ec191ba97d595b4952c33263e7f10b36cce8b661d0af
|
7
|
+
data.tar.gz: 97b692bff667ccfcda1a42334e1ed396dbc2498e7b28d08bdfd9ec98f38a60e919a0bbce59af1e16bc0fe3f73a4db934101ad0b76d065bcb5063d399cafc5d5b
|
data/README.md
CHANGED
@@ -1,41 +1,35 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/au_pair`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
1
|
+
# Au Pair
|
6
2
|
|
7
3
|
## Installation
|
8
4
|
|
9
|
-
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'au_pair'
|
13
|
-
```
|
5
|
+
`gem install aupair`
|
14
6
|
|
15
|
-
|
7
|
+
## What's it?
|
16
8
|
|
17
|
-
|
9
|
+
A dumb little tool for quickly adding the github remotes for your pairs.
|
18
10
|
|
19
|
-
|
11
|
+
## How do I use it?
|
20
12
|
|
21
|
-
|
13
|
+
Instead of having to remember everyone's github usernames, just do this:
|
22
14
|
|
23
|
-
|
15
|
+
`aupair add kit`
|
24
16
|
|
25
|
-
|
17
|
+
and their github remote will be added for the current repo (uncleverly assuming the name of the current working directory is the name of their repo), bada bing:
|
26
18
|
|
27
|
-
|
19
|
+
`git remote -v`
|
28
20
|
|
29
|
-
|
21
|
+
`#=> kit https://github.com/kitlangton/aupair.git (push)`
|
30
22
|
|
31
|
-
|
23
|
+
Now you can start pulling away:
|
32
24
|
|
33
|
-
|
25
|
+
`git pull kit master`
|
34
26
|
|
35
|
-
|
27
|
+
### But wait—
|
36
28
|
|
29
|
+
Yes! I know! **Don't Worry!** The first time you type `aupair add kit` and it doesn't yet know the person's username, it will prompt you:
|
37
30
|
|
38
|
-
|
31
|
+
`Hey, what's Kit's GitHub username?`
|
39
32
|
|
40
|
-
|
33
|
+
and then you will tell it and it know forever and ever (until you switch computers or delete the hidden YAML file in your home directory)
|
41
34
|
|
35
|
+
### Cool, I guess. Bye.
|
data/lib/au_pair/setup.rb
CHANGED
data/lib/au_pair/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aupair
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kit Langton
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|