vispan 0.1.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dbe9fe566ea5f0e162c6a7cafcef542cdcef52a7
4
- data.tar.gz: 8da510a7bcaab07ae848f650a2d19ce57c909c56
3
+ metadata.gz: e94e4376d7c353200a421f6eb1050bb8f1068213
4
+ data.tar.gz: 9eb85a0047ce35453e78bae60972ca11557bab15
5
5
  SHA512:
6
- metadata.gz: 2485a48fee6b3a87b3f026845c0bafcfa25df604ac4cb3b416b530454d770b950fc039fca349cb935b4c77a4e0aa6fc53acbac729a8e7991edba014db4b306e0
7
- data.tar.gz: 063433caa99ad5ed07caef983b4f2ae5773609e3dac851fc625c97ae1465a1d4711d96b1373c5a508b85f35f5a3cb4ae3e5ec69026a8ca56a734a52f16ab1823
6
+ metadata.gz: f59c25e0b026443e22c2add5d888cdfc22e8ac2948d2f53d2f50db5c0edce108320945d96ce61eac883ebae56109dccaf4c94c09cb278acae408423281e9228d
7
+ data.tar.gz: f0e0c592e4ffa0d5024fc369d3ab90c0828e41c736f3607f21090414a61df7a51a3349bdf9e3f174a190423fd7d6ea09f063fdc926161c4377a8f45baeb70c5f
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
  # require "./input.rb"
3
- require "./lib/process_visualisation.rb"
3
+ require "./lib/vispan.rb"
4
4
 
5
5
  if ARGV.length == 2
6
6
  input_file = ARGV[0]
7
7
  output_file = ARGV[1]
8
- process = ProcessVisualisation.new(input_file)
8
+ process = Vispan.new(input_file)
9
9
  process.display_text
10
10
  process.visualize(output_file)
11
11
  else
@@ -6,7 +6,7 @@ require "node.rb"
6
6
  require "output_console.rb"
7
7
  require "output_graphic.rb"
8
8
 
9
- module ProcessVisualisation
9
+ module Vispan
10
10
  attr_reader :processed_string, :nodes, :text, :szenarios
11
11
 
12
12
  class WebPreview < Rack::Static
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vispan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Witek
@@ -80,14 +80,14 @@ extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
82
  - bin/generate
83
- - lib/process_visualisation.rb
84
- - lib/process_visualisation/config.rb
85
- - lib/process_visualisation/graphwriter.rb
86
- - lib/process_visualisation/node.rb
87
- - lib/process_visualisation/output_console.rb
88
- - lib/process_visualisation/output_graphic.rb
89
- - lib/process_visualisation/relation.rb
90
- - lib/process_visualisation/szenario.rb
83
+ - lib/vispan.rb
84
+ - lib/vispan/config.rb
85
+ - lib/vispan/graphwriter.rb
86
+ - lib/vispan/node.rb
87
+ - lib/vispan/output_console.rb
88
+ - lib/vispan/output_graphic.rb
89
+ - lib/vispan/relation.rb
90
+ - lib/vispan/szenario.rb
91
91
  homepage: ''
92
92
  licenses:
93
93
  - BSD-3-Clause
@@ -95,7 +95,7 @@ metadata: {}
95
95
  post_install_message:
96
96
  rdoc_options: []
97
97
  require_paths:
98
- - lib/process_visualisation
98
+ - lib/vispan
99
99
  required_ruby_version: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="