README.md in musicbrainz-0.7.7 vs README.md in musicbrainz-0.8.0
- old
+ new
@@ -1,12 +1,7 @@
-## MusicBrainz Web Service wrapper [![Travis CI](https://secure.travis-ci.org/magnolia-fan/musicbrainz.png)](http://travis-ci.org/magnolia-fan/musicbrainz)
+## MusicBrainz Web Service wrapper
-### Ruby Version
-**IMPORTANT!**
-
-Ruby version 1.9+ required. No support for 1.8.7 anymore, if you still on 1.8 consider using gem [version 0.5.2](https://github.com/magnolia-fan/musicbrainz/tree/v0.5.2#musicbrainz-web-service-wrapper-) and bundle it like this:
-
```ruby
gem 'musicbrainz', '0.5.2'
```
### Installation
@@ -119,25 +114,41 @@
:barcode => String,
:quality => String
}
```
-MusicBrainz::Track
+MusicBrainz::Track (depreciated, now called Recording)
```ruby
# Class Methods
MusicBrainz::Track.find(id)
-MusicBrainz::ReleaseGroup.search(artist_name, track_name)
# Fields
{
:position => Integer,
:recording_id => String,
:title => String,
:length => Integer
}
```
+MusicBrainz::Recording
+```ruby
+# Class Methods
+MusicBrainz::Recording.find(id)
+MusicBrainz::Recording.search(track_name, artist_name)
+
+# Fields
+{
+ :id => Integer,
+ :mbid => Integer,
+ :title => String,
+ :artist => String,
+ :releases => String,
+ :score => Integer
+}
+```
+
### Testing
```
bundle exec rspec
```
@@ -154,8 +165,8 @@
* **Start a feature/bugfix branch (IMPORTANT)**
* 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
+### License
-Copyright (c) 2014 Gregory Eremin. See [LICENSE](https://raw.github.com/magnolia-fan/musicbrainz/master/LICENSE) for further details.
+[MIT](https://raw.github.com/localhots/musicbrainz/master/LICENSE)