├── README.md ├── Rakefile ├── lib ├── ovh.rb └── ovh │ └── rest.rb ├── ovh-rest.gemspec └── test ├── test_api_url.rb └── test_helper.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/ovh.rb: -------------------------------------------------------------------------------- 1 | module OVH 2 | end 3 | -------------------------------------------------------------------------------- /lib/ovh/rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/lib/ovh/rest.rb -------------------------------------------------------------------------------- /ovh-rest.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/ovh-rest.gemspec -------------------------------------------------------------------------------- /test/test_api_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/test/test_api_url.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fotolia/ovh-rest/HEAD/test/test_helper.rb --------------------------------------------------------------------------------