git_auto_checkout 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -7
  3. data/git_auto_checkout.gemspec +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc2d259e57441831e2508602620f44fe6389a579
4
- data.tar.gz: 7110b85ae44612489fc2af228965d4e792771756
3
+ metadata.gz: f6c218f2be628e650a5ebe81daa0fa4b59579a97
4
+ data.tar.gz: 9935dc8e5265690d32873e37f64e98847e1481d0
5
5
  SHA512:
6
- metadata.gz: 0b6df09b625bbf784fde84e8ef6eedd9505dcd1d92a19840f2309f9a2ebb714e1ce93c48dc0dda573f7746ff224641423e73151901ce69da890b2945472779d1
7
- data.tar.gz: 251532dd6b62f0ad2b28535149ec21eab3d4e04334e026dbdcd3170bc8e0944dcc85bc43058e3b58cfedf35182881e71f82753d88180efec619f0881a714e164
6
+ metadata.gz: f6c3665ec273f4e1ac905d0a14a6350785a0ebd66a045355db1f2e3aa58641455503bab7dd27f22e1b0081404a800a2e278b95351e02cc2700658148cfdc2f7e
7
+ data.tar.gz: 05fa71a5e3e0c4fbb0a308f63b9ee6d4d735cd3965367ac6a470952a74a7c7b11184cea85a79bf9e626cb20425a73adcd75a4ce18f7f750787d2bc496f517584
data/README.md CHANGED
@@ -1,25 +1,41 @@
1
1
  # Installation
2
2
 
3
+ ## Method 1: Install from Rubygems
4
+
5
+ ### Prerequisites
6
+
7
+ You must have the `gem` command available on your system.
8
+
9
+ ### Steps
10
+
11
+ Run the following command in your terminal:
12
+
13
+ 1. `gem install git_auto_checkout`
14
+
15
+ ## Method 2: Manually install gem
16
+
3
17
  The repostory is a typical Ruby gem, so it can be installed by cloning and
4
- locally building the .gem file. As of right now, the gem is *not* published on
5
- rubygems.org, so `gem install git_auto_checkout` won't work. I expect to publish
6
- it there sometime soon, but for now, folllow these steps to install:
18
+ locally building the .gem file. Follow these steps to install the gem manually:
7
19
 
8
- ## Prerequisites
20
+ ### Prerequisites
9
21
 
10
- You must have git installed on your system, as well as the "gem" command
22
+ You must have git installed on your system, as well as the `gem` command
11
23
  available.
12
24
 
13
- ## Then run the following commands in your terminal
25
+ ### Steps
26
+
27
+ Run the following commnads in your terminal
14
28
 
15
29
  1. `git clone https://github.com/saghmrossi/git_auto_checkout/`
16
30
  2. `cd git_auto_checkout`
17
31
  3. `gem build git_auto_checkout.gemspec`
18
32
  4. `gem install --local git_auto_checkout*.gem`
19
33
 
34
+ You no longer need the repository after the gem is installed.
35
+
20
36
  # Usage
21
37
 
22
38
  Assuming your gem paths are set up properly, the gem installation makes the
23
- "git_auto_checkout" executable available to you from anywhere. Run it in a
39
+ `git_auto_checkout` executable available to you from anywhere. Run it in a
24
40
  directory that is a git repository and follow the prompts to checkout branches
25
41
  or past commits.
@@ -2,7 +2,7 @@ $:.push File.expand_path('../lib, __FILE__')
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'git_auto_checkout'
5
- s.version = '0.1.0'
5
+ s.version = '0.1.1'
6
6
  s.license = 'BSD 3-Clause'
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ['Saghm Rossi']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_auto_checkout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saghm Rossi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-01 00:00:00.000000000 Z
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: "\n Gives a console-based prompt of all of the past
14
14
  commits,\n and allows the user to select one to checkout.\n