mpath_graph 0.0.4 → 0.0.5

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: d8a5503ae715087d19084692a16bbec0e69e2253
4
- data.tar.gz: 541cfae204b640553c6237e23938eecb7b3a29c9
3
+ metadata.gz: c2354a81726eb5b8a4bd80b455cf4af841df2d93
4
+ data.tar.gz: 17664de8eb01ccbca0de86129ceb5b6eda0e740e
5
5
  SHA512:
6
- metadata.gz: 44fdf9724d60e0467483dd98026b2b6416e208378b721eed0bb65aee077916f7f6b5ae6bd4e6d0e44766edd401c441d4154b89e6ffd2c88fc855eac0331d9cde
7
- data.tar.gz: f5377c43f9aedb4e1ef4720cf07a01251eac237f9b52dd4a004ee1cf502d31e0e9fef605f5623417ab06dac28d4bd753ad7f13d9f9c4b325e4b100c6a211a8dc
6
+ metadata.gz: 09153a85fff517838307db2ae213e305ce508417f735284b2228acbcaca329428920282c93062d5af7242c31b4bc38803621e2a680be32dabb2e988654eab800
7
+ data.tar.gz: 4393b92aa7c38480b58c2870d73e3d7835aea86d83b78542ecfb613478f5265ab90828fb819c28eef426cf0b7853b135a291c3aaf76abf755e25033474d142fc
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ mpath_graph
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.0
data/Rakefile CHANGED
@@ -1 +1,8 @@
1
1
  require "bundler/gem_tasks"
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs.push "lib"
6
+ t.test_files = FileList['test/test_*.rb']
7
+ t.verbose = true
8
+ end
@@ -1,3 +1,3 @@
1
1
  module MPathGraph
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -33,6 +33,7 @@ class TestMPathGraphOddHole < MiniTest::Unit::TestCase
33
33
  def test_rw_search_first
34
34
  computed = MPathGraph::OddHole::rw_search_first(@g)
35
35
  assert_equal [1,2,3,4,5], computed.sort
36
+ end
36
37
 
37
38
  def test_rw_search
38
39
  found = MPathGraph::OddHole::rw_search(@doble_c5, holes_limit: 2)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpath_graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Israel Buitron
@@ -74,6 +74,8 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
+ - ".ruby-gemset"
78
+ - ".ruby-version"
77
79
  - Gemfile
78
80
  - LICENSE.txt
79
81
  - README.md
@@ -81,7 +83,7 @@ files:
81
83
  - lib/mpath_graph.rb
82
84
  - lib/mpath_graph/version.rb
83
85
  - mpath_graph.gemspec
84
- - test/test_mpath_graph.rb
86
+ - test/test_mpath_graph_odd_hole.rb
85
87
  homepage: ''
86
88
  licenses:
87
89
  - MIT
@@ -107,4 +109,4 @@ signing_key:
107
109
  specification_version: 4
108
110
  summary: m-Path graphs library
109
111
  test_files:
110
- - test/test_mpath_graph.rb
112
+ - test/test_mpath_graph_odd_hole.rb