music_explorer 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ac364f1e6e649b8cf14f2d636c5fe17aced3f7685330becd06724c241f888ea
4
- data.tar.gz: 4d42c1d9b91d1a474adfe01e2048e6cf775f18f3a3bffdd6d6668c2fe5e5ad58
3
+ metadata.gz: 31853555f743390c738f1ba3b4ed5ec2c69bb8076f3b1ba23acf983c7014efb9
4
+ data.tar.gz: a0e4c6cb675290a6f65dc7c881b4853a50df7f20ca3401cad057509dbded205a
5
5
  SHA512:
6
- metadata.gz: 6fa6508261c7450b91c886745796ccd50386a3f6768a92762da7ab0137a4521f2a22138f7d8d309bdbb28e7977feff37a7eaee88262d92065303541c45031356
7
- data.tar.gz: 18deeeb5614e75e00edaf6ae0cecb5b30eec0171f964ba077c20bfa60667e6df58a0c6ad1b61394fed68fe681ac3a924680ec28bfcd7053921622b317bf05147
6
+ metadata.gz: 2ef5e3695856bbe25f560f73a36a575b8180852dd9fb73d4902fb0ba399df69e5a349c7fb7e31894a3795df816e77b3204242c68b7b3dce40ba4e44d9292f363
7
+ data.tar.gz: ee6df0fbefd85bc8a4ffd9d4292c3c95479fea96088f95f155275be7f4f3b89c76ce743f9e6f7c176a22ded073eeb3510ca570803403a5eb7870d9785b61d0f5
@@ -1,3 +1,3 @@
1
1
  module MusicExplorer
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
Binary file
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["wkdewey@gmail.com"]
11
11
 
12
12
  spec.summary = %q{This gem uses the Spotify API to explore music artists.}
13
- spec.description = %q{Users can search for an artist on Spotify and discover their top tracks, albums, and similar artists.}
13
+ spec.description = %q{This gem enables users to learn more about music artists with data from the Spotify API. Users are prompted to search for an artist. The app returns the first search result from Spotify and allows users to see the artist's top tracks, album releases, genres or related artists. For the latter option, users can choose one of the related artists and view artist details for that artist in turn. Finally, users can review a list of all artists they have browsed. The app makes use of the RSpotify gem for OAuth authentication, HTTParty to retrieve data from the API, and dotenv to store client_id and client_secret. As explained below under Usage, this means that users will need to obtain their own credentials from Spotify and store them in their own .env file. More info at https://github.com/wkdewey/Music_Explorer_CLI-Data-Gem-Project}
14
14
  spec.homepage = "https://github.com/wkdewey/Music_Explorer_CLI-Data-Gem-Project"
15
15
  spec.license = "MIT"
16
16
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: music_explorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Dewey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-10 00:00:00.000000000 Z
11
+ date: 2020-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -94,8 +94,16 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 2.8.0
97
- description: Users can search for an artist on Spotify and discover their top tracks,
98
- albums, and similar artists.
97
+ description: This gem enables users to learn more about music artists with data from
98
+ the Spotify API. Users are prompted to search for an artist. The app returns the
99
+ first search result from Spotify and allows users to see the artist's top tracks,
100
+ album releases, genres or related artists. For the latter option, users can choose
101
+ one of the related artists and view artist details for that artist in turn. Finally,
102
+ users can review a list of all artists they have browsed. The app makes use of the
103
+ RSpotify gem for OAuth authentication, HTTParty to retrieve data from the API, and
104
+ dotenv to store client_id and client_secret. As explained below under Usage, this
105
+ means that users will need to obtain their own credentials from Spotify and store
106
+ them in their own .env file. More info at https://github.com/wkdewey/Music_Explorer_CLI-Data-Gem-Project
99
107
  email:
100
108
  - wkdewey@gmail.com
101
109
  executables: []
@@ -123,6 +131,8 @@ files:
123
131
  - lib/music_explorer/version.rb
124
132
  - lib/test/cli.rb
125
133
  - lib/test/cli/version.rb
134
+ - music_explorer-0.0.1.gem
135
+ - music_explorer-0.0.2.gem
126
136
  - music_explorer.code-workspace
127
137
  - music_explorer.gemspec
128
138
  homepage: https://github.com/wkdewey/Music_Explorer_CLI-Data-Gem-Project