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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +7 -1
  3. data/lib/lunchy.rb +1 -1
  4. data/lunchy.gemspec +1 -1
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3cc33019d47173ea4f40e3f681f286844d4462bd
4
- data.tar.gz: d80f49a03acb118cd4310e5b1cc30cf0849816ff
3
+ metadata.gz: 97b8130a07d89aed140ff849bd857548ec549ac5
4
+ data.tar.gz: 0c23dd8749531e0ad899226e101b99f5c83d7d49
5
5
  SHA512:
6
- metadata.gz: 0041da7acd2e131c9d83825732d68b6f26653c3c4f92c3b50f73dba8c629bdd2402f9833479c6d07eeb8bd7ea6e399b528beed5d44e2c21c908fee1f23ee76be
7
- data.tar.gz: 4285b9805df49402adf7eb044cf19d42fe78ce9a9361f4ef769306b1c9dfeee5c62e58ea682c7b3ab1efa36c7a7e2e53ab02b246644f99b71dbc78351f4b2c16
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 flag for exact match - [bunnymatic](https://github.com/bunnymatic) [alexeyshockov](https://github.com/alexeyshockov) via [#53](https://github.com/eddiezane/lunchy/pull/53)
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
  ----
@@ -1,7 +1,7 @@
1
1
  require 'fileutils'
2
2
 
3
3
  class Lunchy
4
- VERSION = '0.10.0'
4
+ VERSION = '0.10.1'
5
5
 
6
6
  def start(params)
7
7
  raise ArgumentError, "start [-wF] [name]" if params.empty?
@@ -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 $LUNCH_DIR/lunchy-completion.bash ]; then
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.0
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-19 00:00:00.000000000 Z
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 $LUNCH_DIR/lunchy-completion.bash ]; then\n . $LUNCHY_DIR/lunchy-completion.bash\n
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: