codependency 2.2.0 → 2.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/codependency/graph.rb +24 -3
- data/lib/codependency/version.rb +1 -1
- data/spec/codependency/graph_spec/codependency_graph/files/assets/application_js.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_account_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_history_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_user_js.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/files/breakfast/butter_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/files/breakfast/egg_js.txt +2 -2
- data/spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich_js.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/files/breakfast/toast_js.txt +2 -2
- data/spec/codependency/graph_spec/codependency_graph/files/solar_system/body_rb.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/files/solar_system/earth_rb.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/files/solar_system/mars_rb.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos_rb.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/files/solar_system/planet_rb.txt +2 -2
- data/spec/codependency/graph_spec/codependency_graph/require/assets/application_js.txt +7 -7
- data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_account_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_history_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_user_js.txt +5 -5
- data/spec/codependency/graph_spec/codependency_graph/require/breakfast/butter_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/require/breakfast/egg_js.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich_js.txt +8 -8
- data/spec/codependency/graph_spec/codependency_graph/require/breakfast/toast_js.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/require/lox/money_rb.txt +6 -6
- data/spec/codependency/graph_spec/codependency_graph/require/lox/power_rb.txt +6 -6
- data/spec/codependency/graph_spec/codependency_graph/require/lox/respect_rb.txt +6 -6
- data/spec/codependency/graph_spec/codependency_graph/require/solar_system/body_rb.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/require/solar_system/earth_rb.txt +5 -5
- data/spec/codependency/graph_spec/codependency_graph/require/solar_system/mars_rb.txt +5 -5
- data/spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos_rb.txt +8 -8
- data/spec/codependency/graph_spec/codependency_graph/require/solar_system/planet_rb.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/tsort/assets/application_js.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user_js.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter_js.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg_js.txt +2 -2
- data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich_js.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast_js.txt +2 -2
- data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body_rb.txt +1 -1
- data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth_rb.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars_rb.txt +3 -3
- data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos_rb.txt +4 -4
- data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet_rb.txt +2 -2
- metadata +1 -1
data/lib/codependency/graph.rb
CHANGED
@@ -10,11 +10,10 @@ module Codependency
|
|
10
10
|
# Any dependent files will also be recursively added to this
|
11
11
|
# graph.
|
12
12
|
def require( string )
|
13
|
-
|
14
|
-
file = Pathname( string ).expand_path.relative_path_from( root ).to_path
|
13
|
+
file = path_to( string ).to_path
|
15
14
|
|
16
15
|
self[ file ] ||= parser.parse( file ).map do |short|
|
17
|
-
path[ short ]
|
16
|
+
path_to( path[ short ] ).to_path
|
18
17
|
end
|
19
18
|
self[ file ].each { |f| self.require( f ) unless key?( f ) }
|
20
19
|
end
|
@@ -52,5 +51,27 @@ module Codependency
|
|
52
51
|
def tsort_each_child( node, &block )
|
53
52
|
fetch( node ).each( &block )
|
54
53
|
end
|
54
|
+
|
55
|
+
##
|
56
|
+
# The current working directory of this graph. All paths in the graph
|
57
|
+
# will be relative to this path.
|
58
|
+
def root
|
59
|
+
@root ||= Pathname.getwd
|
60
|
+
end
|
61
|
+
|
62
|
+
##
|
63
|
+
# Calculates the relative path from one path the `#root` path. Accepts
|
64
|
+
# a string, returns a Pathname object populated with the relative path.
|
65
|
+
def path_to( string )
|
66
|
+
path = Pathname( string )
|
67
|
+
path = path.expand_path
|
68
|
+
path = path.relative_path_from( root )
|
69
|
+
|
70
|
+
if path.to_path.start_with?( '.' )
|
71
|
+
path
|
72
|
+
else
|
73
|
+
Pathname( File.join( '.', path.to_path ) )
|
74
|
+
end
|
75
|
+
end
|
55
76
|
end
|
56
77
|
end
|
data/lib/codependency/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
3
|
-
[1] "spec/fixtures/assets/templates/account.js",
|
4
|
-
[2] "spec/fixtures/assets/templates/user.js",
|
5
|
-
[3] "spec/fixtures/assets/application.js"
|
2
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
3
|
+
[1] "./spec/fixtures/assets/templates/account.js",
|
4
|
+
[2] "./spec/fixtures/assets/templates/user.js",
|
5
|
+
[3] "./spec/fixtures/assets/application.js"
|
6
6
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
3
|
-
[1] "spec/fixtures/assets/templates/account.js",
|
4
|
-
[2] "spec/fixtures/assets/templates/user.js"
|
2
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
3
|
+
[1] "./spec/fixtures/assets/templates/account.js",
|
4
|
+
[2] "./spec/fixtures/assets/templates/user.js"
|
5
5
|
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/breakfast/butter.js",
|
3
|
-
[1] "spec/fixtures/breakfast/egg.js",
|
4
|
-
[2] "spec/fixtures/breakfast/toast.js",
|
5
|
-
[3] "spec/fixtures/breakfast/sandwich.js"
|
2
|
+
[0] "./spec/fixtures/breakfast/butter.js",
|
3
|
+
[1] "./spec/fixtures/breakfast/egg.js",
|
4
|
+
[2] "./spec/fixtures/breakfast/toast.js",
|
5
|
+
[3] "./spec/fixtures/breakfast/sandwich.js"
|
6
6
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/earth.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/earth.rb"
|
5
5
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/mars.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/mars.rb"
|
5
5
|
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/mars.rb",
|
5
|
-
[3] "spec/fixtures/solar_system/phobos.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/mars.rb",
|
5
|
+
[3] "./spec/fixtures/solar_system/phobos.rb"
|
6
6
|
]
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/assets/application.js" => [
|
3
|
-
[0] "spec/fixtures/assets/templates/user.js"
|
2
|
+
"./spec/fixtures/assets/application.js" => [
|
3
|
+
[0] "./spec/fixtures/assets/templates/user.js"
|
4
4
|
],
|
5
|
-
"spec/fixtures/assets/templates/user.js" => [
|
6
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
7
|
-
[1] "spec/fixtures/assets/templates/account.js"
|
5
|
+
"./spec/fixtures/assets/templates/user.js" => [
|
6
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
7
|
+
[1] "./spec/fixtures/assets/templates/account.js"
|
8
8
|
],
|
9
|
-
"spec/fixtures/assets/templates/history.js" => [],
|
10
|
-
"spec/fixtures/assets/templates/account.js" => []
|
9
|
+
"./spec/fixtures/assets/templates/history.js" => [],
|
10
|
+
"./spec/fixtures/assets/templates/account.js" => []
|
11
11
|
}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/assets/templates/user.js" => [
|
3
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
4
|
-
[1] "spec/fixtures/assets/templates/account.js"
|
2
|
+
"./spec/fixtures/assets/templates/user.js" => [
|
3
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
4
|
+
[1] "./spec/fixtures/assets/templates/account.js"
|
5
5
|
],
|
6
|
-
"spec/fixtures/assets/templates/history.js" => [],
|
7
|
-
"spec/fixtures/assets/templates/account.js" => []
|
6
|
+
"./spec/fixtures/assets/templates/history.js" => [],
|
7
|
+
"./spec/fixtures/assets/templates/account.js" => []
|
8
8
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/breakfast/egg.js" => [
|
3
|
-
[0] "spec/fixtures/breakfast/butter.js"
|
2
|
+
"./spec/fixtures/breakfast/egg.js" => [
|
3
|
+
[0] "./spec/fixtures/breakfast/butter.js"
|
4
4
|
],
|
5
|
-
"spec/fixtures/breakfast/butter.js" => []
|
5
|
+
"./spec/fixtures/breakfast/butter.js" => []
|
6
6
|
}
|
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/breakfast/sandwich.js" => [
|
3
|
-
[0] "spec/fixtures/breakfast/egg.js",
|
4
|
-
[1] "spec/fixtures/breakfast/toast.js"
|
2
|
+
"./spec/fixtures/breakfast/sandwich.js" => [
|
3
|
+
[0] "./spec/fixtures/breakfast/egg.js",
|
4
|
+
[1] "./spec/fixtures/breakfast/toast.js"
|
5
5
|
],
|
6
|
-
"spec/fixtures/breakfast/egg.js" => [
|
7
|
-
[0] "spec/fixtures/breakfast/butter.js"
|
6
|
+
"./spec/fixtures/breakfast/egg.js" => [
|
7
|
+
[0] "./spec/fixtures/breakfast/butter.js"
|
8
8
|
],
|
9
|
-
"spec/fixtures/breakfast/butter.js" => [],
|
10
|
-
"spec/fixtures/breakfast/toast.js" => [
|
11
|
-
[0] "spec/fixtures/breakfast/butter.js"
|
9
|
+
"./spec/fixtures/breakfast/butter.js" => [],
|
10
|
+
"./spec/fixtures/breakfast/toast.js" => [
|
11
|
+
[0] "./spec/fixtures/breakfast/butter.js"
|
12
12
|
]
|
13
13
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/breakfast/toast.js" => [
|
3
|
-
[0] "spec/fixtures/breakfast/butter.js"
|
2
|
+
"./spec/fixtures/breakfast/toast.js" => [
|
3
|
+
[0] "./spec/fixtures/breakfast/butter.js"
|
4
4
|
],
|
5
|
-
"spec/fixtures/breakfast/butter.js" => []
|
5
|
+
"./spec/fixtures/breakfast/butter.js" => []
|
6
6
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/lox/money.rb" => [
|
3
|
-
[0] "spec/fixtures/lox/power.rb"
|
2
|
+
"./spec/fixtures/lox/money.rb" => [
|
3
|
+
[0] "./spec/fixtures/lox/power.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/lox/power.rb" => [
|
6
|
-
[0] "spec/fixtures/lox/respect.rb"
|
5
|
+
"./spec/fixtures/lox/power.rb" => [
|
6
|
+
[0] "./spec/fixtures/lox/respect.rb"
|
7
7
|
],
|
8
|
-
"spec/fixtures/lox/respect.rb" => [
|
9
|
-
[0] "spec/fixtures/lox/money.rb"
|
8
|
+
"./spec/fixtures/lox/respect.rb" => [
|
9
|
+
[0] "./spec/fixtures/lox/money.rb"
|
10
10
|
]
|
11
11
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/lox/power.rb" => [
|
3
|
-
[0] "spec/fixtures/lox/respect.rb"
|
2
|
+
"./spec/fixtures/lox/power.rb" => [
|
3
|
+
[0] "./spec/fixtures/lox/respect.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/lox/respect.rb" => [
|
6
|
-
[0] "spec/fixtures/lox/money.rb"
|
5
|
+
"./spec/fixtures/lox/respect.rb" => [
|
6
|
+
[0] "./spec/fixtures/lox/money.rb"
|
7
7
|
],
|
8
|
-
"spec/fixtures/lox/money.rb" => [
|
9
|
-
[0] "spec/fixtures/lox/power.rb"
|
8
|
+
"./spec/fixtures/lox/money.rb" => [
|
9
|
+
[0] "./spec/fixtures/lox/power.rb"
|
10
10
|
]
|
11
11
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/lox/respect.rb" => [
|
3
|
-
[0] "spec/fixtures/lox/money.rb"
|
2
|
+
"./spec/fixtures/lox/respect.rb" => [
|
3
|
+
[0] "./spec/fixtures/lox/money.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/lox/money.rb" => [
|
6
|
-
[0] "spec/fixtures/lox/power.rb"
|
5
|
+
"./spec/fixtures/lox/money.rb" => [
|
6
|
+
[0] "./spec/fixtures/lox/power.rb"
|
7
7
|
],
|
8
|
-
"spec/fixtures/lox/power.rb" => [
|
9
|
-
[0] "spec/fixtures/lox/respect.rb"
|
8
|
+
"./spec/fixtures/lox/power.rb" => [
|
9
|
+
[0] "./spec/fixtures/lox/respect.rb"
|
10
10
|
]
|
11
11
|
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/solar_system/earth.rb" => [
|
3
|
-
[0] "spec/fixtures/solar_system/planet.rb"
|
2
|
+
"./spec/fixtures/solar_system/earth.rb" => [
|
3
|
+
[0] "./spec/fixtures/solar_system/planet.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/solar_system/planet.rb" => [
|
6
|
-
[0] "spec/fixtures/solar_system/body.rb"
|
5
|
+
"./spec/fixtures/solar_system/planet.rb" => [
|
6
|
+
[0] "./spec/fixtures/solar_system/body.rb"
|
7
7
|
],
|
8
|
-
"spec/fixtures/solar_system/body.rb" => []
|
8
|
+
"./spec/fixtures/solar_system/body.rb" => []
|
9
9
|
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/solar_system/mars.rb" => [
|
3
|
-
[0] "spec/fixtures/solar_system/planet.rb"
|
2
|
+
"./spec/fixtures/solar_system/mars.rb" => [
|
3
|
+
[0] "./spec/fixtures/solar_system/planet.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/solar_system/planet.rb" => [
|
6
|
-
[0] "spec/fixtures/solar_system/body.rb"
|
5
|
+
"./spec/fixtures/solar_system/planet.rb" => [
|
6
|
+
[0] "./spec/fixtures/solar_system/body.rb"
|
7
7
|
],
|
8
|
-
"spec/fixtures/solar_system/body.rb" => []
|
8
|
+
"./spec/fixtures/solar_system/body.rb" => []
|
9
9
|
}
|
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/solar_system/phobos.rb" => [
|
3
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
4
|
-
[1] "spec/fixtures/solar_system/mars.rb"
|
2
|
+
"./spec/fixtures/solar_system/phobos.rb" => [
|
3
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
4
|
+
[1] "./spec/fixtures/solar_system/mars.rb"
|
5
5
|
],
|
6
|
-
"spec/fixtures/solar_system/body.rb" => [],
|
7
|
-
"spec/fixtures/solar_system/mars.rb" => [
|
8
|
-
[0] "spec/fixtures/solar_system/planet.rb"
|
6
|
+
"./spec/fixtures/solar_system/body.rb" => [],
|
7
|
+
"./spec/fixtures/solar_system/mars.rb" => [
|
8
|
+
[0] "./spec/fixtures/solar_system/planet.rb"
|
9
9
|
],
|
10
|
-
"spec/fixtures/solar_system/planet.rb" => [
|
11
|
-
[0] "spec/fixtures/solar_system/body.rb"
|
10
|
+
"./spec/fixtures/solar_system/planet.rb" => [
|
11
|
+
[0] "./spec/fixtures/solar_system/body.rb"
|
12
12
|
]
|
13
13
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
|
-
"spec/fixtures/solar_system/planet.rb" => [
|
3
|
-
[0] "spec/fixtures/solar_system/body.rb"
|
2
|
+
"./spec/fixtures/solar_system/planet.rb" => [
|
3
|
+
[0] "./spec/fixtures/solar_system/body.rb"
|
4
4
|
],
|
5
|
-
"spec/fixtures/solar_system/body.rb" => []
|
5
|
+
"./spec/fixtures/solar_system/body.rb" => []
|
6
6
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
3
|
-
[1] "spec/fixtures/assets/templates/account.js",
|
4
|
-
[2] "spec/fixtures/assets/templates/user.js",
|
5
|
-
[3] "spec/fixtures/assets/application.js"
|
2
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
3
|
+
[1] "./spec/fixtures/assets/templates/account.js",
|
4
|
+
[2] "./spec/fixtures/assets/templates/user.js",
|
5
|
+
[3] "./spec/fixtures/assets/application.js"
|
6
6
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/assets/templates/history.js",
|
3
|
-
[1] "spec/fixtures/assets/templates/account.js",
|
4
|
-
[2] "spec/fixtures/assets/templates/user.js"
|
2
|
+
[0] "./spec/fixtures/assets/templates/history.js",
|
3
|
+
[1] "./spec/fixtures/assets/templates/account.js",
|
4
|
+
[2] "./spec/fixtures/assets/templates/user.js"
|
5
5
|
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/breakfast/butter.js",
|
3
|
-
[1] "spec/fixtures/breakfast/egg.js",
|
4
|
-
[2] "spec/fixtures/breakfast/toast.js",
|
5
|
-
[3] "spec/fixtures/breakfast/sandwich.js"
|
2
|
+
[0] "./spec/fixtures/breakfast/butter.js",
|
3
|
+
[1] "./spec/fixtures/breakfast/egg.js",
|
4
|
+
[2] "./spec/fixtures/breakfast/toast.js",
|
5
|
+
[3] "./spec/fixtures/breakfast/sandwich.js"
|
6
6
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/earth.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/earth.rb"
|
5
5
|
]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/mars.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/mars.rb"
|
5
5
|
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[
|
2
|
-
[0] "spec/fixtures/solar_system/body.rb",
|
3
|
-
[1] "spec/fixtures/solar_system/planet.rb",
|
4
|
-
[2] "spec/fixtures/solar_system/mars.rb",
|
5
|
-
[3] "spec/fixtures/solar_system/phobos.rb"
|
2
|
+
[0] "./spec/fixtures/solar_system/body.rb",
|
3
|
+
[1] "./spec/fixtures/solar_system/planet.rb",
|
4
|
+
[2] "./spec/fixtures/solar_system/mars.rb",
|
5
|
+
[3] "./spec/fixtures/solar_system/phobos.rb"
|
6
6
|
]
|