codependency 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. data/.pryrc +2 -0
  2. data/README.md +5 -2
  3. data/lib/codependency/graph.rb +12 -13
  4. data/lib/codependency/version.rb +1 -1
  5. data/spec/codependency/graph_spec.rb +51 -72
  6. data/spec/codependency/graph_spec/codependency_graph/files/assets/application_js.txt +6 -0
  7. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_account_js.txt +3 -0
  8. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_history_js.txt +3 -0
  9. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_user_js.txt +5 -0
  10. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/butter_js.txt +3 -0
  11. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/egg_js.txt +4 -0
  12. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich_js.txt +6 -0
  13. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/toast_js.txt +4 -0
  14. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/body_rb.txt +3 -0
  15. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/earth_rb.txt +5 -0
  16. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/mars_rb.txt +5 -0
  17. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos_rb.txt +6 -0
  18. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/planet_rb.txt +4 -0
  19. data/spec/codependency/graph_spec/codependency_graph/require/assets/application_js.txt +11 -0
  20. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_account_js.txt +3 -0
  21. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_history_js.txt +3 -0
  22. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_user_js.txt +8 -0
  23. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/butter_js.txt +3 -0
  24. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/egg_js.txt +6 -0
  25. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich_js.txt +13 -0
  26. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/toast_js.txt +6 -0
  27. data/spec/codependency/graph_spec/codependency_graph/require/lox/money_rb.txt +11 -0
  28. data/spec/codependency/graph_spec/codependency_graph/require/lox/power_rb.txt +11 -0
  29. data/spec/codependency/graph_spec/codependency_graph/require/lox/respect_rb.txt +11 -0
  30. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/body_rb.txt +3 -0
  31. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/earth_rb.txt +9 -0
  32. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/mars_rb.txt +9 -0
  33. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos_rb.txt +13 -0
  34. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/planet_rb.txt +6 -0
  35. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/application_js.txt +6 -0
  36. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account_js.txt +3 -0
  37. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history_js.txt +3 -0
  38. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user_js.txt +5 -0
  39. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter_js.txt +3 -0
  40. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg_js.txt +4 -0
  41. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich_js.txt +6 -0
  42. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast_js.txt +4 -0
  43. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body_rb.txt +3 -0
  44. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth_rb.txt +5 -0
  45. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars_rb.txt +5 -0
  46. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos_rb.txt +6 -0
  47. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet_rb.txt +4 -0
  48. data/spec/support/approvals.rb +13 -0
  49. metadata +87 -86
  50. data/spec/codependency/graph_spec/codependency_graph/files/assets/application.txt +0 -6
  51. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_account.txt +0 -3
  52. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_history.txt +0 -3
  53. data/spec/codependency/graph_spec/codependency_graph/files/assets/templates_user.txt +0 -5
  54. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/butter.txt +0 -3
  55. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/egg.txt +0 -4
  56. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich.txt +0 -6
  57. data/spec/codependency/graph_spec/codependency_graph/files/breakfast/toast.txt +0 -4
  58. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/body.txt +0 -3
  59. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/earth.txt +0 -5
  60. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/mars.txt +0 -5
  61. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos.txt +0 -6
  62. data/spec/codependency/graph_spec/codependency_graph/files/solar_system/planet.txt +0 -4
  63. data/spec/codependency/graph_spec/codependency_graph/require/assets/application.txt +0 -11
  64. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_account.txt +0 -3
  65. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_history.txt +0 -3
  66. data/spec/codependency/graph_spec/codependency_graph/require/assets/templates_user.txt +0 -8
  67. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/butter.txt +0 -3
  68. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/egg.txt +0 -6
  69. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich.txt +0 -13
  70. data/spec/codependency/graph_spec/codependency_graph/require/breakfast/toast.txt +0 -6
  71. data/spec/codependency/graph_spec/codependency_graph/require/lox/money.txt +0 -11
  72. data/spec/codependency/graph_spec/codependency_graph/require/lox/power.txt +0 -11
  73. data/spec/codependency/graph_spec/codependency_graph/require/lox/respect.txt +0 -11
  74. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/body.txt +0 -3
  75. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/earth.txt +0 -9
  76. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/mars.txt +0 -9
  77. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos.txt +0 -13
  78. data/spec/codependency/graph_spec/codependency_graph/require/solar_system/planet.txt +0 -6
  79. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/application.txt +0 -6
  80. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account.txt +0 -3
  81. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history.txt +0 -3
  82. data/spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user.txt +0 -5
  83. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter.txt +0 -3
  84. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg.txt +0 -4
  85. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich.txt +0 -6
  86. data/spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast.txt +0 -4
  87. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body.txt +0 -3
  88. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth.txt +0 -5
  89. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars.txt +0 -5
  90. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos.txt +0 -6
  91. data/spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet.txt +0 -4
@@ -0,0 +1,6 @@
1
+ {
2
+ "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/planet.rb" => [
3
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb"
4
+ ],
5
+ "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb" => []
6
+ }
@@ -0,0 +1,6 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/history.js",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/account.js",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/user.js",
5
+ [3] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/application.js"
6
+ ]
@@ -0,0 +1,3 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/account.js"
3
+ ]
@@ -0,0 +1,3 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/history.js"
3
+ ]
@@ -0,0 +1,5 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/history.js",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/account.js",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/assets/templates/user.js"
5
+ ]
@@ -0,0 +1,3 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/butter.js"
3
+ ]
@@ -0,0 +1,4 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/butter.js",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/egg.js"
4
+ ]
@@ -0,0 +1,6 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/butter.js",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/egg.js",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/toast.js",
5
+ [3] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/sandwich.js"
6
+ ]
@@ -0,0 +1,4 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/butter.js",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/breakfast/toast.js"
4
+ ]
@@ -0,0 +1,3 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb"
3
+ ]
@@ -0,0 +1,5 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/planet.rb",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/earth.rb"
5
+ ]
@@ -0,0 +1,5 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/planet.rb",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/mars.rb"
5
+ ]
@@ -0,0 +1,6 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/planet.rb",
4
+ [2] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/mars.rb",
5
+ [3] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/phobos.rb"
6
+ ]
@@ -0,0 +1,4 @@
1
+ [
2
+ [0] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/body.rb",
3
+ [1] "/Users/jeremyruppel/Git/codependency/spec/fixtures/solar_system/planet.rb"
4
+ ]
@@ -1 +1,14 @@
1
1
  require 'rspec/approvals'
2
+
3
+ ##
4
+ # Simple shared context for allowing fixture-based examples to be
5
+ # declared by using the example and example group names.
6
+ # See graph_spec.rb for examples.
7
+ shared_context 'fixtures', :fixtures => true do
8
+ let( :dirname ){ example.example_group.description }
9
+ let( :basename ){ example.description }
10
+ let( :file ){ File.join './spec/fixtures', dirname, basename }
11
+
12
+ before { subject.path << './spec/fixtures' }
13
+ before { subject.require file }
14
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codependency
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-19 00:00:00.000000000 Z
12
+ date: 2013-04-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -83,6 +83,7 @@ extensions: []
83
83
  extra_rdoc_files: []
84
84
  files:
85
85
  - .gitignore
86
+ - .pryrc
86
87
  - Gemfile
87
88
  - Guardfile
88
89
  - LICENSE
@@ -95,48 +96,48 @@ files:
95
96
  - lib/codependency/path.rb
96
97
  - lib/codependency/version.rb
97
98
  - spec/codependency/graph_spec.rb
98
- - spec/codependency/graph_spec/codependency_graph/files/assets/application.txt
99
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_account.txt
100
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_history.txt
101
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_user.txt
102
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/butter.txt
103
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/egg.txt
104
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich.txt
105
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/toast.txt
106
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/body.txt
107
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/earth.txt
108
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/mars.txt
109
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos.txt
110
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/planet.txt
111
- - spec/codependency/graph_spec/codependency_graph/require/assets/application.txt
112
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_account.txt
113
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_history.txt
114
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_user.txt
115
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/butter.txt
116
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/egg.txt
117
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich.txt
118
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/toast.txt
119
- - spec/codependency/graph_spec/codependency_graph/require/lox/money.txt
120
- - spec/codependency/graph_spec/codependency_graph/require/lox/power.txt
121
- - spec/codependency/graph_spec/codependency_graph/require/lox/respect.txt
122
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/body.txt
123
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/earth.txt
124
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/mars.txt
125
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos.txt
126
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/planet.txt
127
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/application.txt
128
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account.txt
129
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history.txt
130
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user.txt
131
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter.txt
132
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg.txt
133
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich.txt
134
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast.txt
135
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body.txt
136
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth.txt
137
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars.txt
138
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos.txt
139
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet.txt
99
+ - spec/codependency/graph_spec/codependency_graph/files/assets/application_js.txt
100
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_account_js.txt
101
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_history_js.txt
102
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_user_js.txt
103
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/butter_js.txt
104
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/egg_js.txt
105
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich_js.txt
106
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/toast_js.txt
107
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/body_rb.txt
108
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/earth_rb.txt
109
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/mars_rb.txt
110
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos_rb.txt
111
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/planet_rb.txt
112
+ - spec/codependency/graph_spec/codependency_graph/require/assets/application_js.txt
113
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_account_js.txt
114
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_history_js.txt
115
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_user_js.txt
116
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/butter_js.txt
117
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/egg_js.txt
118
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich_js.txt
119
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/toast_js.txt
120
+ - spec/codependency/graph_spec/codependency_graph/require/lox/money_rb.txt
121
+ - spec/codependency/graph_spec/codependency_graph/require/lox/power_rb.txt
122
+ - spec/codependency/graph_spec/codependency_graph/require/lox/respect_rb.txt
123
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/body_rb.txt
124
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/earth_rb.txt
125
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/mars_rb.txt
126
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos_rb.txt
127
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/planet_rb.txt
128
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/application_js.txt
129
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account_js.txt
130
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history_js.txt
131
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user_js.txt
132
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter_js.txt
133
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg_js.txt
134
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich_js.txt
135
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast_js.txt
136
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body_rb.txt
137
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth_rb.txt
138
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars_rb.txt
139
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos_rb.txt
140
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet_rb.txt
140
141
  - spec/codependency/parser_spec.rb
141
142
  - spec/codependency/path_spec.rb
142
143
  - spec/fixtures/assets/application.js
@@ -184,48 +185,48 @@ specification_version: 3
184
185
  summary: A pure ruby, comment-based dependency graph
185
186
  test_files:
186
187
  - spec/codependency/graph_spec.rb
187
- - spec/codependency/graph_spec/codependency_graph/files/assets/application.txt
188
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_account.txt
189
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_history.txt
190
- - spec/codependency/graph_spec/codependency_graph/files/assets/templates_user.txt
191
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/butter.txt
192
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/egg.txt
193
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich.txt
194
- - spec/codependency/graph_spec/codependency_graph/files/breakfast/toast.txt
195
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/body.txt
196
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/earth.txt
197
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/mars.txt
198
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos.txt
199
- - spec/codependency/graph_spec/codependency_graph/files/solar_system/planet.txt
200
- - spec/codependency/graph_spec/codependency_graph/require/assets/application.txt
201
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_account.txt
202
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_history.txt
203
- - spec/codependency/graph_spec/codependency_graph/require/assets/templates_user.txt
204
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/butter.txt
205
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/egg.txt
206
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich.txt
207
- - spec/codependency/graph_spec/codependency_graph/require/breakfast/toast.txt
208
- - spec/codependency/graph_spec/codependency_graph/require/lox/money.txt
209
- - spec/codependency/graph_spec/codependency_graph/require/lox/power.txt
210
- - spec/codependency/graph_spec/codependency_graph/require/lox/respect.txt
211
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/body.txt
212
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/earth.txt
213
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/mars.txt
214
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos.txt
215
- - spec/codependency/graph_spec/codependency_graph/require/solar_system/planet.txt
216
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/application.txt
217
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account.txt
218
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history.txt
219
- - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user.txt
220
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter.txt
221
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg.txt
222
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich.txt
223
- - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast.txt
224
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body.txt
225
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth.txt
226
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars.txt
227
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos.txt
228
- - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet.txt
188
+ - spec/codependency/graph_spec/codependency_graph/files/assets/application_js.txt
189
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_account_js.txt
190
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_history_js.txt
191
+ - spec/codependency/graph_spec/codependency_graph/files/assets/templates_user_js.txt
192
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/butter_js.txt
193
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/egg_js.txt
194
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/sandwich_js.txt
195
+ - spec/codependency/graph_spec/codependency_graph/files/breakfast/toast_js.txt
196
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/body_rb.txt
197
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/earth_rb.txt
198
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/mars_rb.txt
199
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/phobos_rb.txt
200
+ - spec/codependency/graph_spec/codependency_graph/files/solar_system/planet_rb.txt
201
+ - spec/codependency/graph_spec/codependency_graph/require/assets/application_js.txt
202
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_account_js.txt
203
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_history_js.txt
204
+ - spec/codependency/graph_spec/codependency_graph/require/assets/templates_user_js.txt
205
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/butter_js.txt
206
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/egg_js.txt
207
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/sandwich_js.txt
208
+ - spec/codependency/graph_spec/codependency_graph/require/breakfast/toast_js.txt
209
+ - spec/codependency/graph_spec/codependency_graph/require/lox/money_rb.txt
210
+ - spec/codependency/graph_spec/codependency_graph/require/lox/power_rb.txt
211
+ - spec/codependency/graph_spec/codependency_graph/require/lox/respect_rb.txt
212
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/body_rb.txt
213
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/earth_rb.txt
214
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/mars_rb.txt
215
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/phobos_rb.txt
216
+ - spec/codependency/graph_spec/codependency_graph/require/solar_system/planet_rb.txt
217
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/application_js.txt
218
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_account_js.txt
219
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_history_js.txt
220
+ - spec/codependency/graph_spec/codependency_graph/tsort/assets/templates_user_js.txt
221
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/butter_js.txt
222
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/egg_js.txt
223
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/sandwich_js.txt
224
+ - spec/codependency/graph_spec/codependency_graph/tsort/breakfast/toast_js.txt
225
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/body_rb.txt
226
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/earth_rb.txt
227
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/mars_rb.txt
228
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/phobos_rb.txt
229
+ - spec/codependency/graph_spec/codependency_graph/tsort/solar_system/planet_rb.txt
229
230
  - spec/codependency/parser_spec.rb
230
231
  - spec/codependency/path_spec.rb
231
232
  - spec/fixtures/assets/application.js
@@ -1,6 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/assets/templates/history.js>,
3
- [1] #<Pathname:../../fixtures/assets/templates/account.js>,
4
- [2] #<Pathname:../../fixtures/assets/templates/user.js>,
5
- [3] #<Pathname:../../fixtures/assets/application.js>
6
- ]
@@ -1,3 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/assets/templates/account.js>
3
- ]
@@ -1,3 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/assets/templates/history.js>
3
- ]
@@ -1,5 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/assets/templates/history.js>,
3
- [1] #<Pathname:../../fixtures/assets/templates/account.js>,
4
- [2] #<Pathname:../../fixtures/assets/templates/user.js>
5
- ]
@@ -1,3 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/breakfast/butter.js>
3
- ]
@@ -1,4 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/breakfast/butter.js>,
3
- [1] #<Pathname:../../fixtures/breakfast/egg.js>
4
- ]
@@ -1,6 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/breakfast/butter.js>,
3
- [1] #<Pathname:../../fixtures/breakfast/egg.js>,
4
- [2] #<Pathname:../../fixtures/breakfast/toast.js>,
5
- [3] #<Pathname:../../fixtures/breakfast/sandwich.js>
6
- ]
@@ -1,4 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/breakfast/butter.js>,
3
- [1] #<Pathname:../../fixtures/breakfast/toast.js>
4
- ]
@@ -1,3 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/solar_system/body.rb>
3
- ]
@@ -1,5 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/solar_system/body.rb>,
3
- [1] #<Pathname:../../fixtures/solar_system/planet.rb>,
4
- [2] #<Pathname:../../fixtures/solar_system/earth.rb>
5
- ]
@@ -1,5 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/solar_system/body.rb>,
3
- [1] #<Pathname:../../fixtures/solar_system/planet.rb>,
4
- [2] #<Pathname:../../fixtures/solar_system/mars.rb>
5
- ]
@@ -1,6 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/solar_system/body.rb>,
3
- [1] #<Pathname:../../fixtures/solar_system/planet.rb>,
4
- [2] #<Pathname:../../fixtures/solar_system/mars.rb>,
5
- [3] #<Pathname:../../fixtures/solar_system/phobos.rb>
6
- ]
@@ -1,4 +0,0 @@
1
- [
2
- [0] #<Pathname:../../fixtures/solar_system/body.rb>,
3
- [1] #<Pathname:../../fixtures/solar_system/planet.rb>
4
- ]
@@ -1,11 +0,0 @@
1
- {
2
- "assets/application" => [
3
- [0] "assets/templates/user"
4
- ],
5
- "assets/templates/user" => [
6
- [0] "assets/templates/history",
7
- [1] "assets/templates/account"
8
- ],
9
- "assets/templates/history" => [],
10
- "assets/templates/account" => []
11
- }
@@ -1,3 +0,0 @@
1
- {
2
- "assets/templates/account" => []
3
- }
@@ -1,3 +0,0 @@
1
- {
2
- "assets/templates/history" => []
3
- }
@@ -1,8 +0,0 @@
1
- {
2
- "assets/templates/user" => [
3
- [0] "assets/templates/history",
4
- [1] "assets/templates/account"
5
- ],
6
- "assets/templates/history" => [],
7
- "assets/templates/account" => []
8
- }
@@ -1,6 +0,0 @@
1
- {
2
- "breakfast/egg" => [
3
- [0] "breakfast/butter"
4
- ],
5
- "breakfast/butter" => []
6
- }
@@ -1,13 +0,0 @@
1
- {
2
- "breakfast/sandwich" => [
3
- [0] "breakfast/egg",
4
- [1] "breakfast/toast"
5
- ],
6
- "breakfast/egg" => [
7
- [0] "breakfast/butter"
8
- ],
9
- "breakfast/butter" => [],
10
- "breakfast/toast" => [
11
- [0] "breakfast/butter"
12
- ]
13
- }