├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── grooveshark.gemspec ├── lib ├── grooveshark.rb └── grooveshark │ ├── broadcast.rb │ ├── client.rb │ ├── errors.rb │ ├── playlist.rb │ ├── song.rb │ ├── user.rb │ ├── utils.rb │ └── version.rb └── spec ├── grooveshark ├── broadcast_spec.rb ├── client_spec.rb ├── errors_spec.rb ├── playlist_spec.rb ├── song_spec.rb ├── user_spec.rb └── utils_spec.rb └── helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format=documentation 3 | --backtrace 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/Rakefile -------------------------------------------------------------------------------- /grooveshark.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/grooveshark.gemspec -------------------------------------------------------------------------------- /lib/grooveshark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark.rb -------------------------------------------------------------------------------- /lib/grooveshark/broadcast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/broadcast.rb -------------------------------------------------------------------------------- /lib/grooveshark/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/client.rb -------------------------------------------------------------------------------- /lib/grooveshark/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/errors.rb -------------------------------------------------------------------------------- /lib/grooveshark/playlist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/playlist.rb -------------------------------------------------------------------------------- /lib/grooveshark/song.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/song.rb -------------------------------------------------------------------------------- /lib/grooveshark/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/user.rb -------------------------------------------------------------------------------- /lib/grooveshark/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/utils.rb -------------------------------------------------------------------------------- /lib/grooveshark/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/lib/grooveshark/version.rb -------------------------------------------------------------------------------- /spec/grooveshark/broadcast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/broadcast_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/client_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/errors_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/playlist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/playlist_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/song_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/song_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/user_spec.rb -------------------------------------------------------------------------------- /spec/grooveshark/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/grooveshark/utils_spec.rb -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/grooveshark/HEAD/spec/helper.rb --------------------------------------------------------------------------------