recall 0.0.3 → 0.0.4

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 +2 -2
  3. data/lib/recall/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0cd72c43e2ad76cc2fa2d26fb4b631683cd39c9
4
- data.tar.gz: 972070255c4cba8f924f0ec3632a5162bd3e9f45
3
+ metadata.gz: 4b1850d6c09fe71c58854951f01774376c28e2c7
4
+ data.tar.gz: 8a4100f3201d0a3b49069e769f6c4abed02bd21d
5
5
  SHA512:
6
- metadata.gz: c1f6f07248093691e2872fffa6aeb3a822186213adec12b10e92aa8c891e378d37735863736ecdddf17c6b9ff9c86c881689dc46f9cc5029fcd68490769cdb2e
7
- data.tar.gz: 8c029e0471569e6740f3e3a234cc0e804d3af80ad1eaf4c0ecc28a06c564a85ef89b456f4ec4986bbdcaad295402b6ca27b51a38263eb41571b053ad51981091
6
+ metadata.gz: 944b499ed6785febaa8b12ddc7a7c8ed77020e75f2ce94b3e1ed86c34d6c52b5e7cc4981d06e4cf45cf12ed9ecac4edc860485419f779a3752ffeea74cc2ff73
7
+ data.tar.gz: 0be2deec50e90788464ceefd8cc2eb75729b57a47348acbc8e48032127bf9c7ed97040b899736f51786c6654745e36ddd07924b20714a28f28b67dc03c96438e
data/README.md CHANGED
@@ -20,7 +20,7 @@ Huge thanks to [Kevin Curtin](https://twitter.com/kcurtin) for getting the gem w
20
20
 
21
21
  The first time users run `Recall`, they'll be prompted to enter the absolute path of their desired search directory (most likely the user's main "code" directory).
22
22
 
23
- Once the user sets his or her prefered search directory, Recall accepts a search query and will recursively search through all of the .rb files in that directory for mentions of the query. An example of a typcial query would be a semi-exotic Ruby method like `.each_with_object`.
23
+ Once the user sets his or her prefered search directory, Recall accepts a search query and will recursively search through all of the .rb and .erb files in that directory for mentions of the query. An example of a typcial query would be a semi-exotic Ruby method like `.each_with_object`.
24
24
 
25
25
  When it's completed its search, Recall opens a new .rb file in the user's default text editor, presenting all of the search results it found. When the user is finished with the results, he or she can simply close it. The results file is overwritten with each subsequent search.
26
26
 
@@ -40,6 +40,6 @@ Your search directory will persist until you change it. To change the search dir
40
40
 
41
41
  ## Notes
42
42
 
43
- Currently, Recall only searches files with the .rb extension.
43
+ Currently, Recall only searches files with the .rb or the .erb extensions.
44
44
 
45
45
 
@@ -1,3 +1,3 @@
1
1
  module Recall
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Schlinkert