├── .gitignore ├── .ruby-version ├── Gemfile ├── LICENSE ├── README.md └── Rakefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/sdl-ios-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/sdl-ios-framework/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/sdl-ios-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/sdl-ios-framework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manifest/sdl-ios-framework/HEAD/Rakefile --------------------------------------------------------------------------------