lunchy 0.10.0 → 0.10.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 +4 -4
- data/History.md +7 -1
- data/lib/lunchy.rb +1 -1
- data/lunchy.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b8130a07d89aed140ff849bd857548ec549ac5
|
|
4
|
+
data.tar.gz: 0c23dd8749531e0ad899226e101b99f5c83d7d49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5ccd2e866f260b1159d8946a5ea469435c3d1b64bae21a5b631dfaff9ed8c6a3c03d2018cd41d18013ce74945304460c5eb210c2d1ae32ffcbda110a4bec9ef
|
|
7
|
+
data.tar.gz: b2536fe1cc11f28f6b49fd703c2861f2051280f1e240504d3fb9d3534f88e5d5ceb0b622463f3033c97b5d8da838aeafab896e8bac6c6f5bd62b8d5a1a291af3
|
data/History.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
Changes
|
|
2
2
|
================
|
|
3
3
|
|
|
4
|
+
0.10.1
|
|
5
|
+
----
|
|
6
|
+
|
|
7
|
+
- Fix typo in bash script via [#54](https://github.com/eddiezane/lunchy/pull/54)
|
|
8
|
+
|
|
9
|
+
|
|
4
10
|
0.10.0
|
|
5
11
|
----
|
|
6
12
|
|
|
7
|
-
- Add
|
|
13
|
+
- Add bash completion - [bunnymatic](https://github.com/bunnymatic) [alexeyshockov](https://github.com/alexeyshockov) via [#53](https://github.com/eddiezane/lunchy/pull/53)
|
|
8
14
|
|
|
9
15
|
0.9.0
|
|
10
16
|
----
|
data/lib/lunchy.rb
CHANGED
data/lunchy.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ If you want to add tab-completion (for bash), add the following
|
|
|
10
10
|
to your .bash_profile, .bashrc or .profile
|
|
11
11
|
|
|
12
12
|
LUNCHY_DIR=$(dirname `gem which lunchy`)/../extras
|
|
13
|
-
if [ -f $
|
|
13
|
+
if [ -f $LUNCHY_DIR/lunchy-completion.bash ]; then
|
|
14
14
|
. $LUNCHY_DIR/lunchy-completion.bash
|
|
15
15
|
fi
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lunchy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Perham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-06-
|
|
11
|
+
date: 2015-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -49,7 +49,7 @@ metadata: {}
|
|
|
49
49
|
post_install_message: "-------\n\nThanks for installing Lunchy. We know you're going
|
|
50
50
|
to love it!\n\nIf you want to add tab-completion (for bash), add the following \nto
|
|
51
51
|
your .bash_profile, .bashrc or .profile\n\n LUNCHY_DIR=$(dirname `gem which lunchy`)/../extras\n
|
|
52
|
-
\ if [ -f $
|
|
52
|
+
\ if [ -f $LUNCHY_DIR/lunchy-completion.bash ]; then\n . $LUNCHY_DIR/lunchy-completion.bash\n
|
|
53
53
|
\ fi\n\n-------\n"
|
|
54
54
|
rdoc_options: []
|
|
55
55
|
require_paths:
|