ffetch 0.1.0
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.
- data/README.md +7 -0
- metadata +59 -0
data/README.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Ffetch is a graphical user interface to search for files names by Regex on Windows platform.
|
2
|
+
|
3
|
+
The Gui searches a default directory you specify in the data.rb file. The menu allows you to choose any directory on the system which will be searched for a match.
|
4
|
+
|
5
|
+
Once a list of fetched files is displayed in the text window, you can open any one of these files by selecting it (clicked) and then double clicking the selection. The file will be opened in the associated editor such as Windows Notepad.
|
6
|
+
|
7
|
+
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ffetch
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sabry Abdel Fattah
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-03-31 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Ffetch is a graphical user interface to search a chosen directory for
|
15
|
+
files matching a Regex pattern and then opening a selected file of the list when
|
16
|
+
double clicked.
|
17
|
+
email: sabryabdelfattah@gmail.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files:
|
21
|
+
- README.md
|
22
|
+
files:
|
23
|
+
- README.md
|
24
|
+
homepage: http://sabryfattah.com
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options:
|
29
|
+
- --main
|
30
|
+
- README.md
|
31
|
+
- lib/data.rb
|
32
|
+
- lib/gui.rb
|
33
|
+
- lib/fetch.rbw
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 1.8.29
|
51
|
+
signing_key:
|
52
|
+
specification_version: 3
|
53
|
+
summary: Ffetch is a graphical user interface to search for files names by Regex on
|
54
|
+
Windows platform. The Gui searches a default directory you specify in the data.rb
|
55
|
+
file. The menu allows you to choose any directory on the system which will be searched
|
56
|
+
for a match. Once a list of fetched files is displayed in the text window, you can
|
57
|
+
open any one of these files by selecting it (clicked) and then double clicking the
|
58
|
+
selection. The file will be opened in the associated editor such as Windows Notepad.
|
59
|
+
test_files: []
|