clone_git_file 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/clone_git_file.gemspec +1 -0
- data/lib/clone_git_file/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a63f3da30569d9f7f8641a5cd746eeab52dac815
|
4
|
+
data.tar.gz: 5000c0e7aba5ec2b0570d12b9e0298c1a911617f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60a6a090e8ad6271edf06ddafc582faa831fcaef47775191850da7371f4bf15d48de27987d0afe83e3d1f0a89b6183a974e832c1b82c7e3fc131e7e5ade17300
|
7
|
+
data.tar.gz: ae25e54c0a68a3b63f840f2810cf7ca296ad6aea95001e67d4d71bc593cf8c860507e562faae891e147bce062fd7c54aef34524c58806c3874c5b8138135bde8
|
data/README.md
CHANGED
@@ -34,7 +34,12 @@ EDITOR=mvim TARGET_DIRECTORY=~/dev clone_git_file https://github.com/brandoncc/c
|
|
34
34
|
|
35
35
|
### Bonus
|
36
36
|
|
37
|
-
You can also supply the repo url or a repo directory url, and that directory will be opened by your editor
|
37
|
+
* You can also supply the repo url or a repo directory url, and that directory will be opened by your editor
|
38
|
+
* Setup an alias to make using the gem easy. For example, here is mine (zsh):
|
39
|
+
|
40
|
+
```bash
|
41
|
+
alias cgf="TARGET_DIRECTORY=~/dev EDITOR=mvim clone_git_file $1"
|
42
|
+
```
|
38
43
|
|
39
44
|
# Limitations
|
40
45
|
|
data/clone_git_file.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clone_git_file
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Conway
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: mocha
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description:
|
70
84
|
email:
|
71
85
|
- brandoncc@gmail.com
|