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 +4 -4
- data/.github/workflows/main.yml +17 -0
- data/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/lib/songstats/api/version.rb +1 -1
- data/songstats-api.gemspec +4 -3
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdd71b08ec8e829360c0d0a42eeebb89ecb14973a06c2e12010b0b0541aedfb4
|
4
|
+
data.tar.gz: d27d0a80d47ae16c3a5320786790da1b7477cfc945ce7e2836239f0cfcbc4479
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1629c98e4d0b7c165092c69189e81474757a1db5e92087c682610594fdb9b4da08014c3d5d767bfc7bc533bd241f1235c0a989fc3329e5b65bf782e3d566765
|
7
|
+
data.tar.gz: b4f739e33268c1bfb5f0ff09c6bb1809cd1dc628f84263bd688407c0d74f7f7fc5d32d30c39fa742732df0e9668fbaae83380286803255e4eb29aa4ac3e340a1
|
data/.github/workflows/main.yml
CHANGED
@@ -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
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Songstats::Api
|
2
2
|
|
3
|
-
|
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
|
-
|
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/
|
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/
|
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).
|
data/songstats-api.gemspec
CHANGED
@@ -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 = ["
|
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 = "
|
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"] = "
|
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.
|
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
|
+
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
|
-
-
|
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:
|
54
|
+
homepage: https://github.com/songtradr/songstats-api
|
55
55
|
licenses: []
|
56
56
|
metadata:
|
57
|
-
homepage_uri:
|
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:
|