├── .env ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── README.md ├── lib ├── routific.rb ├── routific │ ├── break.rb │ ├── job.rb │ ├── location.rb │ ├── options.rb │ ├── route.rb │ ├── vehicle.rb │ ├── visit.rb │ └── way_point.rb └── util.rb ├── routific.gemspec └── spec ├── break_spec.rb ├── helper ├── factory.rb └── spec_helper.rb ├── job_spec.rb ├── location_spec.rb ├── options_spec.rb ├── route_spec.rb ├── routific_spec.rb ├── vehicle_spec.rb ├── visit_spec.rb └── way_point_spec.rb /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/README.md -------------------------------------------------------------------------------- /lib/routific.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific.rb -------------------------------------------------------------------------------- /lib/routific/break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/break.rb -------------------------------------------------------------------------------- /lib/routific/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/job.rb -------------------------------------------------------------------------------- /lib/routific/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/location.rb -------------------------------------------------------------------------------- /lib/routific/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/options.rb -------------------------------------------------------------------------------- /lib/routific/route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/route.rb -------------------------------------------------------------------------------- /lib/routific/vehicle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/vehicle.rb -------------------------------------------------------------------------------- /lib/routific/visit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/visit.rb -------------------------------------------------------------------------------- /lib/routific/way_point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/routific/way_point.rb -------------------------------------------------------------------------------- /lib/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/lib/util.rb -------------------------------------------------------------------------------- /routific.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/routific.gemspec -------------------------------------------------------------------------------- /spec/break_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/break_spec.rb -------------------------------------------------------------------------------- /spec/helper/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/helper/factory.rb -------------------------------------------------------------------------------- /spec/helper/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/helper/spec_helper.rb -------------------------------------------------------------------------------- /spec/job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/job_spec.rb -------------------------------------------------------------------------------- /spec/location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/location_spec.rb -------------------------------------------------------------------------------- /spec/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/options_spec.rb -------------------------------------------------------------------------------- /spec/route_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/route_spec.rb -------------------------------------------------------------------------------- /spec/routific_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/routific_spec.rb -------------------------------------------------------------------------------- /spec/vehicle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/vehicle_spec.rb -------------------------------------------------------------------------------- /spec/visit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/visit_spec.rb -------------------------------------------------------------------------------- /spec/way_point_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routific/routific-gem/HEAD/spec/way_point_spec.rb --------------------------------------------------------------------------------