dir_friend 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/dir_friend.gemspec +2 -2
- data/lib/dir_friend/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa7bb1977ab2096ec7285d4812f11b3a17291bb8
|
4
|
+
data.tar.gz: fad70081f893281aef5b38c136684d877ef70de9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f25be97b601b4f83effad5b82647cb2025c36fb1552f8a2f4b98e41fa2b7f1b1d0f07fb947e02c116029f3ce540e3cb0126133ceaa182dc4f5464b65d59443af
|
7
|
+
data.tar.gz: 95fe6a182a8ec999ae56ef98ca0148b7721caa45bcd161f3a9d9e93384d468e80267b9f7d81cacbae9196a6010759bc68a16f453fe2445616e71a912f6fea45e
|
data/README.md
CHANGED
@@ -16,6 +16,12 @@ Or install it yourself as:
|
|
16
16
|
|
17
17
|
$ gem install dir_friend
|
18
18
|
|
19
|
+
## Requisite
|
20
|
+
|
21
|
+
To open a DOT file, Graphviz is required.
|
22
|
+
|
23
|
+
[Graphviz | Graphviz - Graph Visualization Software](http://www.graphviz.org/ "Graphviz | Graphviz - Graph Visualization Software")
|
24
|
+
|
19
25
|
## Usage
|
20
26
|
|
21
27
|
In your terminal, try followings;
|
@@ -34,6 +40,8 @@ In your terminal, try followings;
|
|
34
40
|
|
35
41
|
% dir_friend dot path/to/project --theme blueegg
|
36
42
|
|
43
|
+
You can create your own themes from scratch or edit them.
|
44
|
+
|
37
45
|
|
38
46
|
In your ruby script;
|
39
47
|
|
data/dir_friend.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = DirFriend::VERSION
|
9
9
|
spec.authors = ["kyoendo"]
|
10
10
|
spec.email = ["postagie@gmail.com"]
|
11
|
-
spec.description = %q{`DirFriend` is a tool for
|
12
|
-
spec.summary = %q{`DirFriend` is a tool for
|
11
|
+
spec.description = %q{`DirFriend` is a tool for generating a DOT file which represent file directories.}
|
12
|
+
spec.summary = %q{`DirFriend` is a tool for generating a DOT file which represent file directories.}
|
13
13
|
spec.homepage = "https://github.com/melborne/dir_friend"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
data/lib/dir_friend/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dir_friend
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kyoendo
|
@@ -94,7 +94,8 @@ dependencies:
|
|
94
94
|
- - '>='
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
-
description: '`DirFriend` is a tool for
|
97
|
+
description: '`DirFriend` is a tool for generating a DOT file which represent file
|
98
|
+
directories.'
|
98
99
|
email:
|
99
100
|
- postagie@gmail.com
|
100
101
|
executables:
|
@@ -149,7 +150,7 @@ rubyforge_project:
|
|
149
150
|
rubygems_version: 2.1.9
|
150
151
|
signing_key:
|
151
152
|
specification_version: 4
|
152
|
-
summary: '`DirFriend` is a tool for
|
153
|
+
summary: '`DirFriend` is a tool for generating a DOT file which represent file directories.'
|
153
154
|
test_files:
|
154
155
|
- spec/command_spec.rb
|
155
156
|
- spec/config_spec.rb
|