0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
ActiveRecord integration with the MusicBrainz database
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

ActiveBrainz

Continuous Integration Release

ActiveRecord integrations for the MusicBrainz database.

Installation

Add this line to your application's Gemfile:

gem "active_brainz"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install active_brainz

Configuration

Configure your database.yml with the MusicBrainz database:

musicbrainz:
  adapter: postgresql
  host: postgres
  port: 5432
  database: musicbrainz
  user: musicbrainz
  password: musicbrainz

Usage

TODO: Write usage instructions here

Documentation

The SQL scripts used to create the MusicBrainz database schema can be found on their Github repository.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment. Modify config/database.rb or use environment variables to connect to a non-localhost server.

The following rake tasks are available:

rake active_brainz:models:annotate  # Annotate models
rake active_brainz:models:generate  # Generates models based on db/schema.rb file
rake active_brainz:models:render    # Generate and annotate models
rake db:create                      # Creates the database
rake db:drop                        # Drops the database
rake db:schema:dump                 # Dumps the database structure to db/schema.rb
rake db:schema:load                 # Recreates the databases from the schema.rb file
rake spec                           # Run RSpec code examples

To release a new version, update the version number in lib/active_brainz/version.rb, commit it and create a git tag starting with v, and push it to the repository. Github Actions will automatically run the test suite, build the .gem file and push it to rubygems.org.

If MusicBrainz' database schema version gets bumped, don't forget to bump the schema version in lib/active_brainz/version.rb as well.

Implementing a new model

  1. Uncomment the table in lib/active_brainz/database.rb
  2. Run rake active_brainz:models:render
  3. Review the generated models, specs and factories
  4. Uncomment associations to new models in existing models

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/floriandejonckheere/active_brainz. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the ActiveBrainz project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.