├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── overdrive-m4b ├── overdrive-m4b.gemspec ├── sh └── overdrive-m4b.sh └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/README.md -------------------------------------------------------------------------------- /bin/overdrive-m4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/bin/overdrive-m4b -------------------------------------------------------------------------------- /overdrive-m4b.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/overdrive-m4b.gemspec -------------------------------------------------------------------------------- /sh/overdrive-m4b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflouret/overdrive-m4b/HEAD/sh/overdrive-m4b.sh -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | --------------------------------------------------------------------------------