summary refs log tree commit diff
path: root/src/librustpkg/package_source.rs
AgeCommit message (Collapse)AuthorLines
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-3/+3
2013-06-27Convert vec::[mut_]slice to methods, remove vec::const_slice.Huon Wilson-3/+2
2013-06-23vec: remove BaseIter implementationDaniel Micay-2/+2
I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway.
2013-06-21vec: rm old_iter implementations, except BaseIterDaniel Micay-2/+2
The removed test for issue #2611 is well covered by the `std::iterator` module itself. This adds the `count` method to `IteratorUtil` to replace `EqIter`.
2013-06-14rustpkg: Write more automated testsTim Chevalier-2/+3
Automate more tests described in the commands.txt file, and add infrastructure for running them. Right now, tests shell out to call rustpkg. This is not ideal.
2013-06-12Silence some warnings.Huon Wilson-1/+1
2013-06-11option: remove redundant old_iter implsDaniel Micay-1/+1
2013-06-09rustpkg: Accept package IDs like github.com/foo/bar#0.3Tim Chevalier-0/+239
If the package ID is of the form s#v, where v is a valid version string, fetch tag v of that package.