Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/documentation/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions spotify-ruby.gemspec → spotify-ruby-kev.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ $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 = [
"Build integrations with the different Spotify APIs",
"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|
Expand Down Expand Up @@ -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