songstats-api 0.1.1 → 0.1.4

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: 18a1fa39cd9519d995d56a68bef88761686877d10e12965197af73f778303d23
4
- data.tar.gz: c11fe9d0f6b1e9b4839a889f24351fbd538824fb9f311328b7377bb4ea45b1e7
3
+ metadata.gz: cdd71b08ec8e829360c0d0a42eeebb89ecb14973a06c2e12010b0b0541aedfb4
4
+ data.tar.gz: d27d0a80d47ae16c3a5320786790da1b7477cfc945ce7e2836239f0cfcbc4479
5
5
  SHA512:
6
- metadata.gz: da9f560f692d94336deaebacab3cceea1deebfa03cc0a497f94a72340c67501d7b6543ca675458a2c4210f8d5b8beaab89be8f881a6678de26a0087deb742f40
7
- data.tar.gz: 93f714653c05e04490b1eb08849e14903047fb0016c5ddafdff8497bfd9d8d2e2bd1a8070c7672c268793fe748b57a8044b13edd149d79b2694b8a9c7239b1b3
6
+ metadata.gz: c1629c98e4d0b7c165092c69189e81474757a1db5e92087c682610594fdb9b4da08014c3d5d767bfc7bc533bd241f1235c0a989fc3329e5b65bf782e3d566765
7
+ data.tar.gz: b4f739e33268c1bfb5f0ff09c6bb1809cd1dc628f84263bd688407c0d74f7f7fc5d32d30c39fa742732df0e9668fbaae83380286803255e4eb29aa4ac3e340a1
@@ -16,3 +16,20 @@ jobs:
16
16
  gem install bundler -v 2.2.3
17
17
  bundle install
18
18
  bundle exec rake
19
+ publish:
20
+ needs: build
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - uses: actions/checkout@v2
24
+ - name: Set up Ruby
25
+ uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: 3.0.0
28
+ - name: Run the publish task
29
+ run: |
30
+ gem install bundler -v 2.2.3
31
+ bundle install
32
+ gem build
33
+ gem push --key github --file *.gem
34
+ env:
35
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
data/.gitignore CHANGED
@@ -7,6 +7,7 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .env
10
+ *.gem
10
11
 
11
12
  # rspec failure tracking
12
13
  .rspec_status
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- songstats-api (0.1.1)
4
+ songstats-api (0.1.4)
5
5
  httparty
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Songstats::Api
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/songstats/api`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ The Songstats API Gem is a lightweight tool for developers to interact with the Songstats REST API. With this gem, you can integrate Songstats' music data into your Ruby applications, making it easy to access information about tracks, artists, and more.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ To experiment with that code, run `bin/console` for an interactive prompt.
6
6
 
7
7
  ## Installation
8
8
 
@@ -32,8 +32,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/songstats-api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/songstats-api/blob/master/CODE_OF_CONDUCT.md).
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/songtradr/songstats-api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/songtradr/songstats-api/blob/main/CODE_OF_CONDUCT.md).
36
36
 
37
37
  ## Code of Conduct
38
38
 
39
- Everyone interacting in the Songstats::Api project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/songstats-api/blob/master/CODE_OF_CONDUCT.md).
39
+ Everyone interacting in the Songstats::Api project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/songtradr/songstats-api/blob/main/CODE_OF_CONDUCT.md).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Songstats
4
4
  module Api
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.4"
6
6
  end
7
7
  end
@@ -6,17 +6,18 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "songstats-api"
7
7
  spec.version = Songstats::Api::VERSION
8
8
  spec.authors = ["Daryl Findlay"]
9
- spec.email = ["darylfindlay@gmail.com"]
9
+ spec.email = ["daryl.findlay@songtradr.com"]
10
10
 
11
11
  spec.summary = "A simple API wrapper for the Songstats API"
12
12
  spec.description = "A simple API wrapper for the Songstats API"
13
- spec.homepage = "http://www.songtradr.com"
13
+ spec.homepage = "https://github.com/songtradr/songstats-api"
14
14
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
15
15
 
16
- # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
16
+ # spec.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/songtradr"
17
17
 
18
18
  spec.metadata["homepage_uri"] = spec.homepage
19
19
  spec.metadata["source_code_uri"] = "https://github.com/songtradr/songstats-api"
20
+ spec.metadata["github_repo"] = spec.metadata["source_code_uri"]
20
21
  # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
21
22
 
22
23
  # Specify which files should be added to the gem when it is released.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: songstats-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daryl Findlay
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-11 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -26,7 +26,7 @@ dependencies:
26
26
  version: '0'
27
27
  description: A simple API wrapper for the Songstats API
28
28
  email:
29
- - darylfindlay@gmail.com
29
+ - daryl.findlay@songtradr.com
30
30
  executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
@@ -51,11 +51,12 @@ files:
51
51
  - lib/songstats/api/track.rb
52
52
  - lib/songstats/api/version.rb
53
53
  - songstats-api.gemspec
54
- homepage: http://www.songtradr.com
54
+ homepage: https://github.com/songtradr/songstats-api
55
55
  licenses: []
56
56
  metadata:
57
- homepage_uri: http://www.songtradr.com
57
+ homepage_uri: https://github.com/songtradr/songstats-api
58
58
  source_code_uri: https://github.com/songtradr/songstats-api
59
+ github_repo: https://github.com/songtradr/songstats-api
59
60
  post_install_message:
60
61
  rdoc_options: []
61
62
  require_paths: