stigg-api-client 0.0.1.pre.b.2 → 0.0.1.pre.b.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: 91f41d86f64f6687768ff3f10cb0870de0d0b6607c6777acd7c830bcf01934cd
4
- data.tar.gz: 3f97d9baacf3ad27499e14f1a4497413bc833b9145c20eded1f655427af3dcbe
3
+ metadata.gz: b2f8a82740d256bf027b896fc6a0fe74e3c38daa8b930a891e6a648624b5b28f
4
+ data.tar.gz: a4788ccaa8586a675618666e5452dbd4aea1b502df25b7808fa706768e207914
5
5
  SHA512:
6
- metadata.gz: 82c15cd2c4de15458e7bb921306fcac7a2cee459226ddeb203c70a09f06be56a0b23e826367451d3eff0b6410ba99631e7da370e2ea9b718764f2cb0bb26b0f5
7
- data.tar.gz: 563b964e5114d56ccaff45b2b3698e27d0687207fb8341e2f8f6cc27e8739c3e46e845625a52251bc0b3ff86012999ac3266df26221c28b985c797c984bffdce
6
+ metadata.gz: a7750418ce25ad2f0e92b39192db5597cea37700d76eee08599e4f3cc1683f5f80cc1ddcd845f73e53e37b68ed54c30ae1545c684359a40c691ab0b056b78d9c
7
+ data.tar.gz: 1a4b7c1179c6b7eb0c77b0db92614b43482444b84facb2b676a12e39aaadb965c7b1d3d71a7471d1bed9ef8dc170a46707f058d6c94fa365467b4aebf87a254b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.0.1.pre.b.2)
4
+ stigg-api-client (0.0.1.pre.b.4)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.0.1-b.2"
4
+ VERSION = "0.0.1.pre.b.4"
5
5
  end
data/project.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "test": {
22
22
  "executor": "@nrwl/workspace:run-commands",
23
23
  "options": {
24
- "command": "rake spec",
24
+ "command": "bundle exec rake spec",
25
25
  "cwd": "packages/api-client-ruby"
26
26
  },
27
27
  "dependsOn": [
data/scripts/publish.sh CHANGED
@@ -17,14 +17,15 @@ bundle exec rake build
17
17
 
18
18
  # create a temporary commit, since it's not possible to
19
19
  # release with a dirty working directory
20
- echo "Creating temporary commit and tag..."
20
+ TAG="v${VERSION}"
21
+ echo "Creating temporary commit and tag (${TAG})..."
21
22
  git add .
22
23
  git commit --no-verify -m "tmp commit for ruby release"
23
- git tag "v#${VERSION}"
24
+ git tag "${TAG}"
24
25
 
25
26
  echo "Releasing..."
26
- bundle exec rake release -v || (git tag -d "v#${VERSION}" ; git reset --soft HEAD~1 ; exit 1)
27
+ bundle exec rake release -v || (git tag -d "${TAG}" ; git reset --soft HEAD~1 ; exit 1)
27
28
  git reset --soft HEAD~1
28
- git tag -d "v#${VERSION}"
29
+ git tag -d "${TAG}"
29
30
 
30
31
  echo "api-client-ruby published!"
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stigg-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.b.2
4
+ version: 0.0.1.pre.b.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-05-10 00:00:00.000000000 Z
@@ -51,7 +51,7 @@ licenses:
51
51
  - MIT
52
52
  metadata:
53
53
  homepage_uri: https://stigg.io
54
- post_install_message:
54
+ post_install_message:
55
55
  rdoc_options: []
56
56
  require_paths:
57
57
  - lib
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  version: 1.3.1
68
68
  requirements: []
69
69
  rubygems_version: 3.4.10
70
- signing_key:
70
+ signing_key:
71
71
  specification_version: 4
72
72
  summary: Stigg API Client
73
73
  test_files: []