README.md in codependency-0.3.1 vs README.md in codependency-1.0.0
- old
+ new
@@ -1,11 +1,9 @@
# Codependency
Codependency is a simple comment-based dependency graph that you can use on arbitrary files.
-It uses the program `tsort` under the hood, so sorry windoze I guess?
-
## Installation
Add this line to your application's Gemfile:
gem 'codependency'
@@ -39,11 +37,11 @@
```
Then, we create a dependency graph to determine the order in which the files might need to be loaded, inserted, or compiled:
``` rb
-graph = Codependency::Graph.new %w| bar.rb foo.rb |
-graph.files # => ["foo.rb", "bar.rb"]
+graph = Codependency::Graph.new "bar.rb"
+graph.files # => ["./foo.rb", "./bar.rb"]
```
## Contributing
1. Fork it