├── .gitignore ├── .rspec ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin └── rdio ├── lib ├── api.rb ├── om.rb ├── rdio.rb └── rdio │ ├── desktop_bridge.rb │ └── version.rb ├── rdio-cli.gemspec ├── script ├── bootstrap ├── cibuild ├── console ├── guard ├── package ├── release └── test ├── spec ├── fixtures │ ├── eric_clapton.txt │ ├── hurt.txt │ ├── layla.txt │ └── the_black_keys.txt ├── rdio │ └── desktop_bridge_spec.rb ├── rdio_spec.rb └── spec_helper.rb └── tmp └── fakehome └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | tmp/fakehome/.rdio 2 | pkg/ 3 | tmp/rspec_guard_result 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/rdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/bin/rdio -------------------------------------------------------------------------------- /lib/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/lib/api.rb -------------------------------------------------------------------------------- /lib/om.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/lib/om.rb -------------------------------------------------------------------------------- /lib/rdio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/lib/rdio.rb -------------------------------------------------------------------------------- /lib/rdio/desktop_bridge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/lib/rdio/desktop_bridge.rb -------------------------------------------------------------------------------- /lib/rdio/version.rb: -------------------------------------------------------------------------------- 1 | module Rdio 2 | VERSION = '1.2.2' 3 | end 4 | -------------------------------------------------------------------------------- /rdio-cli.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/rdio-cli.gemspec -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | bundle install --quiet "$@" 6 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | script/test 6 | -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/script/console -------------------------------------------------------------------------------- /script/guard: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | script/bootstrap 5 | bundle exec guard "$@" 6 | -------------------------------------------------------------------------------- /script/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/script/package -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/script/release -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/script/test -------------------------------------------------------------------------------- /spec/fixtures/eric_clapton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/fixtures/eric_clapton.txt -------------------------------------------------------------------------------- /spec/fixtures/hurt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/fixtures/hurt.txt -------------------------------------------------------------------------------- /spec/fixtures/layla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/fixtures/layla.txt -------------------------------------------------------------------------------- /spec/fixtures/the_black_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/fixtures/the_black_keys.txt -------------------------------------------------------------------------------- /spec/rdio/desktop_bridge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/rdio/desktop_bridge_spec.rb -------------------------------------------------------------------------------- /spec/rdio_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/rdio_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengwynn/rdio-cli/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tmp/fakehome/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------