├── .document ├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.markdown ├── Rakefile ├── bin ├── soulmate └── soulmate-web ├── lib ├── soulmate.rb └── soulmate │ ├── base.rb │ ├── config.rb │ ├── helpers.rb │ ├── loader.rb │ ├── matcher.rb │ ├── server.rb │ └── version.rb ├── soulmate.gemspec └── test ├── db └── .gitkeep ├── helper.rb ├── samples ├── stop-words.txt └── venues.json ├── test.conf └── test_soulmate.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/soulmate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/bin/soulmate -------------------------------------------------------------------------------- /bin/soulmate-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/bin/soulmate-web -------------------------------------------------------------------------------- /lib/soulmate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate.rb -------------------------------------------------------------------------------- /lib/soulmate/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/base.rb -------------------------------------------------------------------------------- /lib/soulmate/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/config.rb -------------------------------------------------------------------------------- /lib/soulmate/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/helpers.rb -------------------------------------------------------------------------------- /lib/soulmate/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/loader.rb -------------------------------------------------------------------------------- /lib/soulmate/matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/matcher.rb -------------------------------------------------------------------------------- /lib/soulmate/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/server.rb -------------------------------------------------------------------------------- /lib/soulmate/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/lib/soulmate/version.rb -------------------------------------------------------------------------------- /soulmate.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/soulmate.gemspec -------------------------------------------------------------------------------- /test/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/samples/stop-words.txt: -------------------------------------------------------------------------------- 1 | vs 2 | at 3 | the 4 | to -------------------------------------------------------------------------------- /test/samples/venues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/test/samples/venues.json -------------------------------------------------------------------------------- /test/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/test/test.conf -------------------------------------------------------------------------------- /test/test_soulmate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seatgeek/soulmate/HEAD/test/test_soulmate.rb --------------------------------------------------------------------------------