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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca73351949075f6c417dfc67b65836a9d4081f92
4
- data.tar.gz: f8a6ccb6304e41d5834a088ab9aee13543d9a94f
3
+ metadata.gz: d12a0233ff7d6e7246660aa1af2b6be23f70b4d2
4
+ data.tar.gz: b65efcd6f5e07cdd8cf7f3e90d7ecf6b4a57a677
5
5
  SHA512:
6
- metadata.gz: eb725b0b6ef1226bad772efc8f97149ae3f683403a09cb0f0f327ca837ffeeee26433ddbed09dc678ff07671c22854259063b0106734ef641a7d6a0bf8b23ff7
7
- data.tar.gz: 21542c14c72096c4ad5b186dcfb91e0bdf43fa56f21b042f19bd49674c16b7a0d754e43278973581b05368fdb331259385c1b779f213cbf3637ceae384110947
6
+ metadata.gz: bd34cd1772b174e12239839224a328728c0f8336bc659eb53f85a0e5bbc62d115f66f85c43b068ca9a54ec191ba97d595b4952c33263e7f10b36cce8b661d0af
7
+ data.tar.gz: 97b692bff667ccfcda1a42334e1ed396dbc2498e7b28d08bdfd9ec98f38a60e919a0bbce59af1e16bc0fe3f73a4db934101ad0b76d065bcb5063d399cafc5d5b
data/README.md CHANGED
@@ -1,41 +1,35 @@
1
- # AuPair
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
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'au_pair'
13
- ```
5
+ `gem install aupair`
14
6
 
15
- And then execute:
7
+ ## What's it?
16
8
 
17
- $ bundle
9
+ A dumb little tool for quickly adding the github remotes for your pairs.
18
10
 
19
- Or install it yourself as:
11
+ ## How do I use it?
20
12
 
21
- $ gem install au_pair
13
+ Instead of having to remember everyone's github usernames, just do this:
22
14
 
23
- ## Usage
15
+ `aupair add kit`
24
16
 
25
- TODO: Write usage instructions here
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
- ## Development
19
+ `git remote -v`
28
20
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
21
+ `#=> kit https://github.com/kitlangton/aupair.git (push)`
30
22
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
23
+ Now you can start pulling away:
32
24
 
33
- ## Contributing
25
+ `git pull kit master`
34
26
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/au_pair. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
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
- ## License
31
+ `Hey, what's Kit's GitHub username?`
39
32
 
40
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
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.
@@ -12,6 +12,7 @@ module AuPair
12
12
  github.add_remote(name: name, username: username, repo: repo.get_name)
13
13
  else
14
14
  users.ask_username_for(name)
15
+ add(name)
15
16
  end
16
17
  end
17
18
 
@@ -1,3 +1,3 @@
1
1
  module AuPair
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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-06 00:00:00.000000000 Z
11
+ date: 2016-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor