README.md in beatport-0.3.0 vs README.md in beatport-0.4.0

- old
+ new

@@ -1,10 +1,10 @@ # Beatport [![Dependency Status](https://gemnasium.com/mateomurphy/beatport.png)](https://gemnasium.com/mateomurphy/beatport) -A ruby gem for accessing the Beatport API; currently incomplete and only supports the Catalog API, but under development. +A ruby gem for accessing the Beatport API; currently incomplete and only supports the Catalog API, but under development. https://oauth-api.beatport.com/docs/ ## Oauth @@ -28,14 +28,14 @@ ## Examples ```ruby require 'beatport' - + # Search using the query "Mord Fustang" on Beatport query = Beatport::Catalog::Search.query("Mord Fustang") - + query.class # => returns a Beatport::Collection object query[0].class # => first result is a Beatport::Catalog::Artist object query[0].id # => returns the Beatport id of the artist @@ -49,13 +49,13 @@ # display each genre and its corresponding Beatport genre slug genres.each do |genre| puts "Genre: #{genre.name} slug: #{genre.slug}" end - + # find the top 10 downloads for the genre Electro House - electro_house_genre = Beatport::Catalog::Genre.find('electro-house') + electro_house_genre = Beatport::Catalog::Genre.find('electro-house') # => create Electro House Genre object by searching by slug electro_house_top_10 = trance_genre.top_downloads # => list the top downloads for the Electro House genre @@ -70,19 +70,19 @@ To run specs, you'll need to create a file with your oauth credentials in `spec/config.rb`, which will be loaded by `spec/spec_helper.rb` ## Contributing to beatport - + * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it * Fork the project * Start a feature/bugfix branch * Commit and push until you are happy with your contribution * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. ## Copyright -Copyright (c) 2011-2013 Mateo Murphy. See LICENSE.txt for +Copyright (c) 2011-present Mateo Murphy. See LICENSE.txt for further details.