File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- require_relative "lib/bundler/viz /version"
3
+ require_relative "lib/bundler/graph /version"
4
4
5
5
Gem ::Specification . new do |spec |
6
- spec . name = "bundler-viz "
7
- spec . version = Bundler ::Viz ::VERSION
6
+ spec . name = "bundler-graph "
7
+ spec . version = Bundler ::Graph ::VERSION
8
8
spec . authors = [ "Hiroshi SHIBATA" ]
9
9
spec . email = [ "[email protected] " ]
10
10
11
11
spec . summary = ""
12
12
spec . description = ""
13
- spec . homepage = "https://github.com/rubygems/bundler-viz "
13
+ spec . homepage = "https://github.com/rubygems/bundler-graph "
14
14
spec . license = "MIT"
15
15
spec . required_ruby_version = ">= 2.4.0"
16
16
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- require "bundler/plugin/api"
4
-
5
3
module Bundler
6
- class Viz < Plugin :: API
4
+ class Graph
7
5
VERSION = "0.1.0"
8
6
end
9
7
end
Original file line number Diff line number Diff line change 4
4
require_relative "graph"
5
5
6
6
module Bundler
7
- class Viz < Plugin ::API
7
+ class GraphCLI < Plugin ::API
8
8
9
- command "viz "
9
+ command "graph "
10
10
11
11
def exec ( command , options )
12
12
# make sure we get the right `graphviz`. There is also a `graphviz`
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- require " bundler/viz "
3
+ require_relative "lib/ bundler/graph_cli "
You can’t perform that action at this time.
0 commit comments