├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Rake.Tests ├── Rake.Tests.csproj ├── RakeTests.cs └── TutorialComparison.cs ├── Rake.sln └── Rake ├── Helpers ├── StopListHelper.cs └── StringSplitter.cs ├── Properties └── AssemblyInfo.cs ├── Rake.cs ├── Rake.csproj └── SmartStoplist.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/README.md -------------------------------------------------------------------------------- /Rake.Tests/Rake.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake.Tests/Rake.Tests.csproj -------------------------------------------------------------------------------- /Rake.Tests/RakeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake.Tests/RakeTests.cs -------------------------------------------------------------------------------- /Rake.Tests/TutorialComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake.Tests/TutorialComparison.cs -------------------------------------------------------------------------------- /Rake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake.sln -------------------------------------------------------------------------------- /Rake/Helpers/StopListHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/Helpers/StopListHelper.cs -------------------------------------------------------------------------------- /Rake/Helpers/StringSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/Helpers/StringSplitter.cs -------------------------------------------------------------------------------- /Rake/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rake/Rake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/Rake.cs -------------------------------------------------------------------------------- /Rake/Rake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/Rake.csproj -------------------------------------------------------------------------------- /Rake/SmartStoplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benmcevoy/Rake/HEAD/Rake/SmartStoplist.txt --------------------------------------------------------------------------------