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 87% rename from spotify-ruby.gemspec rename to spotify-ruby-kev.gemspec index c2796fb..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| @@ -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