diff --git a/LICENSE b/LICENSE index bdb0e55..952ed83 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012 Gregory Eremin +Copyright (c) 2024 Gregory Eremin MIT License @@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 8cacadd..e8f3e7f 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,6 @@ bundle exec irb -r musicbrainz * 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) diff --git a/musicbrainz.gemspec b/musicbrainz.gemspec index d379335..0f1675f 100644 --- a/musicbrainz.gemspec +++ b/musicbrainz.gemspec @@ -4,7 +4,7 @@ Gem::Specification.new do |gem| gem.authors = ["Gregory Eremin"] gem.email = ["magnolia_fan@me.com"] gem.summary = %q{ MusicBrainz Web Service wrapper with ActiveRecord-style models } - gem.homepage = "http://github.com/magnolia-fan/musicbrainz" + gem.homepage = "http://github.com/localhots/musicbrainz" gem.files = %x{ git ls-files }.split($\) gem.executables = [] diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d98d8b0..7c0779e 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -10,7 +10,7 @@ MusicBrainz.configure do |c| test_email = `git config user.email`.chomp - test_email = "magnolia_fan@me.com" if test_email.empty? + raise 'Configure user.email in Git before running tests' if test_email.empty? c.app_name = "MusicBrainzGemTestSuite" c.app_version = MusicBrainz::VERSION