gemviz 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/README.txt +8 -7
  3. data/bin/gemviz +5 -0
  4. metadata +4 -4
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.1.1 / 2009-01-10
2
+
3
+ * updated default (hoe-generated) README.txt
4
+
1
5
  === 0.1.0 / 2009-01-10
2
6
 
3
7
  * initial release
data/README.txt CHANGED
@@ -1,32 +1,33 @@
1
1
  = gemviz
2
2
 
3
- * FIX (url)
3
+ * http://rubyforge.org/projects/gemviz/
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- FIX (describe your package)
7
+ Provides the ability to graph the dependencies of a given installed gem. Uses a similar approach to DepGraph, but finer-grained; graphs dependencies only for the named gem(s), rather than for all installed gems at once.
8
8
 
9
9
  == FEATURES/PROBLEMS:
10
10
 
11
- * FIX (list of features or problems)
11
+ * Doesn't take multiple versions into account.
12
+ * [TODO] Add ability to graph reverse-dependencies.
12
13
 
13
14
  == SYNOPSIS:
14
15
 
15
- FIX (code sample of usage)
16
+ gemviz rails
16
17
 
17
18
  == REQUIREMENTS:
18
19
 
19
- * FIX (list of requirements)
20
+ * ruby-graphviz
20
21
 
21
22
  == INSTALL:
22
23
 
23
- * FIX (sudo gem install, anything else)
24
+ * sudo gem install gemviz
24
25
 
25
26
  == LICENSE:
26
27
 
27
28
  (The MIT License)
28
29
 
29
- Copyright (c) 2009 FIX
30
+ Copyright (c) 2009 David Rupp
30
31
 
31
32
  Permission is hereby granted, free of charge, to any person obtaining
32
33
  a copy of this software and associated documentation files (the
data/bin/gemviz CHANGED
@@ -1,3 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Copyright (c) 2009. David Rupp. All rights reserved.
4
+ # http://gemviz.rubyforge.org
5
+
1
6
  if ARGV.empty?
2
7
  puts "Usage: gemviz gem1 [gem2 ...]"
3
8
  exit 0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemviz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rupp
@@ -22,7 +22,7 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 1.8.2
24
24
  version:
25
- description: FIX (describe your package)
25
+ description: Provides the ability to graph the dependencies of a given installed gem. Uses a similar approach to DepGraph, but finer-grained; graphs dependencies only for the named gem(s), rather than for all installed gems at once.
26
26
  email:
27
27
  - david@ruppconsulting.com
28
28
  executables:
@@ -42,7 +42,7 @@ files:
42
42
  - lib/gemviz.rb
43
43
  - test/test_gemviz.rb
44
44
  has_rdoc: true
45
- homepage: FIX (url)
45
+ homepage: http://rubyforge.org/projects/gemviz/
46
46
  post_install_message:
47
47
  rdoc_options:
48
48
  - --main
@@ -67,6 +67,6 @@ rubyforge_project: gemviz
67
67
  rubygems_version: 1.3.1
68
68
  signing_key:
69
69
  specification_version: 2
70
- summary: FIX (describe your package)
70
+ summary: Provides the ability to graph the dependencies of a given installed gem
71
71
  test_files:
72
72
  - test/test_gemviz.rb