├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── docs ├── directions.md ├── geocoding.md ├── isochrone.md ├── mapmatching.md ├── matrix.md ├── optimization.md └── tilequery.md ├── lib ├── mapbox-sdk.rb ├── mapbox.rb └── mapbox │ ├── api_operations.rb │ ├── authentication_error.rb │ ├── directions.rb │ ├── geocoder.rb │ ├── isochrone.rb │ ├── map_matching.rb │ ├── matrix.rb │ ├── optimization.rb │ └── tilequery.rb ├── mapbox-sdk.gemspec └── test ├── all_tests.rb ├── directions_test.rb ├── geocoding_test.rb ├── isochrone_test.rb ├── map_matching_test.rb ├── mapbox_test.rb ├── matrix_test.rb ├── optimization_test.rb └── tilequery_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/Rakefile -------------------------------------------------------------------------------- /docs/directions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/directions.md -------------------------------------------------------------------------------- /docs/geocoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/geocoding.md -------------------------------------------------------------------------------- /docs/isochrone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/isochrone.md -------------------------------------------------------------------------------- /docs/mapmatching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/mapmatching.md -------------------------------------------------------------------------------- /docs/matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/matrix.md -------------------------------------------------------------------------------- /docs/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/optimization.md -------------------------------------------------------------------------------- /docs/tilequery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/docs/tilequery.md -------------------------------------------------------------------------------- /lib/mapbox-sdk.rb: -------------------------------------------------------------------------------- 1 | require 'mapbox' 2 | -------------------------------------------------------------------------------- /lib/mapbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox.rb -------------------------------------------------------------------------------- /lib/mapbox/api_operations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/api_operations.rb -------------------------------------------------------------------------------- /lib/mapbox/authentication_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/authentication_error.rb -------------------------------------------------------------------------------- /lib/mapbox/directions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/directions.rb -------------------------------------------------------------------------------- /lib/mapbox/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/geocoder.rb -------------------------------------------------------------------------------- /lib/mapbox/isochrone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/isochrone.rb -------------------------------------------------------------------------------- /lib/mapbox/map_matching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/map_matching.rb -------------------------------------------------------------------------------- /lib/mapbox/matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/matrix.rb -------------------------------------------------------------------------------- /lib/mapbox/optimization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/optimization.rb -------------------------------------------------------------------------------- /lib/mapbox/tilequery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/lib/mapbox/tilequery.rb -------------------------------------------------------------------------------- /mapbox-sdk.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/mapbox-sdk.gemspec -------------------------------------------------------------------------------- /test/all_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/all_tests.rb -------------------------------------------------------------------------------- /test/directions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/directions_test.rb -------------------------------------------------------------------------------- /test/geocoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/geocoding_test.rb -------------------------------------------------------------------------------- /test/isochrone_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/isochrone_test.rb -------------------------------------------------------------------------------- /test/map_matching_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/map_matching_test.rb -------------------------------------------------------------------------------- /test/mapbox_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/mapbox_test.rb -------------------------------------------------------------------------------- /test/matrix_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/matrix_test.rb -------------------------------------------------------------------------------- /test/optimization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/optimization_test.rb -------------------------------------------------------------------------------- /test/tilequery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-sdk-rb/HEAD/test/tilequery_test.rb --------------------------------------------------------------------------------