From 57f3326eae03e7c9e5825588e18bd559ec7b41f9 Mon Sep 17 00:00:00 2001 From: kev737 Date: Sat, 29 May 2021 21:45:46 -0700 Subject: [PATCH 1/2] Upgrade to Active Support 6 --- spotify-ruby.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotify-ruby.gemspec b/spotify-ruby.gemspec index c2796fb..0d3d962 100644 --- a/spotify-ruby.gemspec +++ b/spotify-ruby.gemspec @@ -51,6 +51,6 @@ Gem::Specification.new do |spec| spec.add_development_dependency "yard-api" # Runtime Dependencies - spec.add_runtime_dependency "activesupport", "~> 5.2.3" + spec.add_runtime_dependency "activesupport", "~> 6.0" spec.add_runtime_dependency "httparty", ">= 0.15.6", "< 0.18" end From b13465f808eaf5cd7fad3774800e1fb6ca98a70a Mon Sep 17 00:00:00 2001 From: kev737 Date: Sat, 29 May 2021 22:58:14 -0700 Subject: [PATCH 2/2] Try to push gem with updates while waiting for owner --- docs/documentation/contributing/index.md | 4 ++-- spotify-ruby.gemspec => spotify-ruby-kev.gemspec | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) rename spotify-ruby.gemspec => spotify-ruby-kev.gemspec (90%) diff --git a/docs/documentation/contributing/index.md b/docs/documentation/contributing/index.md index b5e76da..0a5f876 100755 --- a/docs/documentation/contributing/index.md +++ b/docs/documentation/contributing/index.md @@ -135,7 +135,7 @@ In our project, we have the core files in the root folder `/`: | Local Config | [.rvm-version] | Our RVM-specific [Ruby] version we're using to build `spotify-ruby`. | | Local Config | [Gemfile] | Used for running `bundler install` during installation. | | External Config | [.travis.yml] | Our config for our continuous integration provider, [Travis CI]. | -| External Config | [spotify-ruby.gemspec] | Used for configuring the `spotify-ruby` gem. | +| External Config | [spotify-ruby-kev.gemspec] | Used for configuring the `spotify-ruby` gem. | | Tooling | [Rakefile] | Used for running `rake` helper commands. | | Documentation | [LICENSE] | A distributed excerpt of our source code license. | | Documentation | [CODE_OF_CONDUCT.md] | Our official Code of Conduct policy. | @@ -146,7 +146,7 @@ In our project, we have the core files in the root folder `/`: [.rubocop.yml]: https://github.com/bih/spotify-ruby/blob/master/.rubocop.yml [.ruby-version]: https://github.com/bih/spotify-ruby/blob/master/.ruby-version [.rvm-version]: https://github.com/bih/spotify-ruby/blob/master/.rvm-version -[spotify-ruby.gemspec]: https://github.com/bih/spotify-ruby/blob/master/spotify-ruby.gemspec +[spotify-ruby-kev.gemspec]: https://github.com/bih/spotify-ruby/blob/master/spotify-ruby-kev.gemspec [gemfile]: https://github.com/bih/spotify-ruby/blob/master/Gemfile [rakefile]: https://github.com/bih/spotify-ruby/blob/master/Rakefile [license]: https://github.com/bih/spotify-ruby/blob/master/LICENSE diff --git a/spotify-ruby.gemspec b/spotify-ruby-kev.gemspec similarity index 90% rename from spotify-ruby.gemspec rename to spotify-ruby-kev.gemspec index 0d3d962..cf87c4c 100644 --- a/spotify-ruby.gemspec +++ b/spotify-ruby-kev.gemspec @@ -5,10 +5,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "spotify/version" Gem::Specification.new do |spec| - spec.name = "spotify-ruby" + spec.name = "spotify-ruby-kev" spec.version = Spotify::VERSION - spec.authors = ["Bilawal Hameed"] - spec.email = ["bil@spotify.com"] + spec.authors = ["Kevin Heffernan"] + spec.email = ["kevin.heffernan97@gmail.com"] spec.summary = "The developer-friendly, opinionated Ruby SDK for Spotify." spec.description = [ @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| "inside of your application.", "For more information, visit https://developer.spotify.com" ].join(" ") - spec.homepage = "https://bih.github.io/spotify-ruby" + spec.homepage = "https://github.com/kev737/spotify-ruby" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f|