codeclimate-fede 0.85.21 → 0.85.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- metadata +11 -13
- data/bin/publish +0 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 01533be5480af5268dbf70a22dbe320012ccec197ea35ac20a4fa7b21b941e30
|
4
|
+
data.tar.gz: 02ef4db16a75c1b28413ffffb8fd9be47b5f9fb1c3c6fe602208f581e457fd8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10df135c6d5e6260a020b34a0c4b82e3872e74aff825ad0d70af8cacf18fb63e08c83a9ebb984781bcd5685c059df9d7a4ef04a128bb4c3be4546e9c49b3318b
|
7
|
+
data.tar.gz: ab6407941f88fb3ea948b031cb1699348401c4a1b398ff922eafc340e32d715fed2b86a1c75726cfd84613b1ce5a664020654fb09493f854c38ce7b22fcd0b36
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codeclimate-fede
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.85.
|
4
|
+
version: 0.85.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code Climate
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2021-04-16 00:00:00.000000000 Z
|
@@ -102,22 +102,22 @@ dependencies:
|
|
102
102
|
name: rainbow
|
103
103
|
requirement: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
|
-
- - "~>"
|
106
|
-
- !ruby/object:Gem::Version
|
107
|
-
version: '2.0'
|
108
105
|
- - ">="
|
109
106
|
- !ruby/object:Gem::Version
|
110
107
|
version: 2.0.0
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2.0'
|
111
111
|
type: :runtime
|
112
112
|
prerelease: false
|
113
113
|
version_requirements: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "~>"
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '2.0'
|
118
115
|
- - ">="
|
119
116
|
- !ruby/object:Gem::Version
|
120
117
|
version: 2.0.0
|
118
|
+
- - "~>"
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '2.0'
|
121
121
|
- !ruby/object:Gem::Dependency
|
122
122
|
name: redcarpet
|
123
123
|
requirement: !ruby/object:Gem::Requirement
|
@@ -155,7 +155,6 @@ files:
|
|
155
155
|
- bin/check
|
156
156
|
- bin/codeclimate
|
157
157
|
- bin/prep-release
|
158
|
-
- bin/publish
|
159
158
|
- bin/release
|
160
159
|
- bin/validate-release
|
161
160
|
- config/engines.yml
|
@@ -256,7 +255,7 @@ homepage: https://codeclimate.com
|
|
256
255
|
licenses:
|
257
256
|
- AGPL
|
258
257
|
metadata: {}
|
259
|
-
post_install_message:
|
258
|
+
post_install_message:
|
260
259
|
rdoc_options: []
|
261
260
|
require_paths:
|
262
261
|
- lib
|
@@ -271,9 +270,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
271
270
|
- !ruby/object:Gem::Version
|
272
271
|
version: '0'
|
273
272
|
requirements: []
|
274
|
-
|
275
|
-
|
276
|
-
signing_key:
|
273
|
+
rubygems_version: 3.0.8
|
274
|
+
signing_key:
|
277
275
|
specification_version: 4
|
278
276
|
summary: Code Climate CLI
|
279
277
|
test_files: []
|
data/bin/publish
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
#
|
3
|
-
# Publish new gem version and creates GH tag for it.
|
4
|
-
#
|
5
|
-
###
|
6
|
-
|
7
|
-
set -e
|
8
|
-
set -o nounset
|
9
|
-
set -o errexit
|
10
|
-
#set -o pipefail
|
11
|
-
|
12
|
-
mkdir -p $HOME/.gem
|
13
|
-
touch $HOME/.gem/credentials
|
14
|
-
chmod 0600 $HOME/.gem/credentials
|
15
|
-
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
16
|
-
gem build *.gemspec
|
17
|
-
gem push *.gem
|
18
|
-
rake release
|
19
|
-
|
20
|
-
|
21
|
-
#version=$(< VERSION)
|
22
|
-
|
23
|
-
#docker build --rm --tag codeclimate/codeclimate .
|
24
|
-
#docker push codeclimate/codeclimate:latest
|
25
|
-
#docker tag codeclimate/codeclimate "codeclimate/codeclimate:$version"
|
26
|
-
#docker push "codeclimate/codeclimate:$version"
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
#PROJECT_RELATIVE_PATH=src/github.com/codeclimate/test-reporter
|
36
|
-
#
|
37
|
-
## Install go
|
38
|
-
#curl -O https://dl.google.com/go/go1.15.darwin-amd64.tar.gz
|
39
|
-
#tar -xzf go1.15.darwin-amd64.tar.gz
|
40
|
-
#echo 'export PATH=$PATH:$PWD/go/bin' >> "$BASH_ENV"
|
41
|
-
#
|
42
|
-
## Set go path
|
43
|
-
#mkdir -p ~/gopath/${PROJECT_RELATIVE_PATH}
|
44
|
-
#echo 'export GOPATH=$HOME/gopath' >> "$BASH_ENV"
|
45
|
-
#. "$BASH_ENV"
|
46
|
-
#cd $GOPATH/${PROJECT_RELATIVE_PATH}
|
47
|
-
#cp -r ~/project/ $GOPATH/${PROJECT_RELATIVE_PATH}
|