r-git 1.0.0 → 1.0.1

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: 05cbfe0454fe867f20f6416f11c9cea9513ac5e2
4
- data.tar.gz: f8f7a31c05cd135b171bf4b2bfec17072a41b234
3
+ metadata.gz: 8dfda05c99ffdd37e680d7a6848e87c9019dce72
4
+ data.tar.gz: 318684d5dcad6633e7a5ebf302f0ed7c26a33fbf
5
5
  SHA512:
6
- metadata.gz: 4dd8d49b6d9c1bdb4c00f2a283be89782acc578d3ddf7cc82d64a92142bb473a7c0034c8bfc0ea7663d792cf3329af38e3c094e0a3dc327e00fcca63ec24be9d
7
- data.tar.gz: bbffe7fffe3af9dca193c7a27e3d8e5b898c730fa3f005b71c862ade457fe62abeb2bb58fdd1e19b250c8e485ed9f5d8d1dcaeabb6536b19a7491770fe5ddcaf
6
+ metadata.gz: 331aca1709cdf8adf4472b0fe9993934a6dc966415b83225fb93cdac3d528a80df4da393ade4b80e8d9ea71268a1d6862e59b72e4acf7651ed2d17a0a1ce2a09
7
+ data.tar.gz: e40a0e8a880ec4aa4022a7a25241b63474c05e3b7ba9cc84b2174acc09f00dfa7f3f757272a6d9908a9f364c462b6c25d3d74ed1cfe6a118ee9ce20c7c5809ec
data/README.md CHANGED
@@ -25,12 +25,19 @@ r-git has the concepts of 'roots' in our scenario `personal-projects` and `work-
25
25
  Running any of the following commands will result in that command being executed across all projects within the root:
26
26
 
27
27
  * `rgit -s`
28
+
28
29
  Status of all repositories
30
+
29
31
  * `rgit -p`
32
+
30
33
  Execute git pull on all repositories
34
+
31
35
  * `rgit -f`
36
+
32
37
  Execute git fetch on all repositories
38
+
33
39
  * `rgit -c development`
40
+
34
41
  Execute `git checkout development` on all repositories
35
42
 
36
43
  For example: executing `rgit -f` from within any folder in `personal-projects` will run git fetch on all repositories in that folder/root.
data/lib/rgit/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rgit
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
data/r-git.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.description = 'Executable gem for managing multiple git repositories in a top level directory. rgit-git allow
14
14
  you to easily fetch, pull, change branch, etc. across multiple git repositories with a single
15
15
  command.'
16
- spec.homepage = 'http://www.james-ridgway.co.uk'
16
+ spec.homepage = 'https://github.com/jamesridgway/r-git'
17
17
  spec.license = 'MIT'
18
18
 
19
19
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Ridgway
@@ -135,7 +135,7 @@ files:
135
135
  - lib/rgit/rgit.rb
136
136
  - lib/rgit/version.rb
137
137
  - r-git.gemspec
138
- homepage: http://www.james-ridgway.co.uk
138
+ homepage: https://github.com/jamesridgway/r-git
139
139
  licenses:
140
140
  - MIT
141
141
  metadata: {}