songstats-api 0.1.2 → 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/lib/songstats/api/version.rb +1 -1
- data/songstats-api.gemspec +2 -2
- metadata +2 -2
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/songstats-api.gemspec
CHANGED
@@ -6,14 +6,14 @@ 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
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"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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
|
@@ -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: []
|