codeclimate-fede 0.85.24 → 0.85.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/bin/publish +47 -0
- metadata +13 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fa4b6f9286e3d2834d98264a84ea11d393975aad
|
4
|
+
data.tar.gz: 586daaf0248a139192212055f7d1ed889bd89ca5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d8af277f9bdd2297c98ac57ec1694cd897471f59a066c5cd08751e5793accfb6fd44889ae0b348ae0bc80ffab63b369ae6a5e6aee5dfc7b5319674105555e1c
|
7
|
+
data.tar.gz: b691b0faa6e0d424f53653f0f81b7f814326573ac46a54053589297b3b9f690061a056e51b93179209902e2247f691c71aaf60d64c25e22937a3da4d6d33e4d9
|
data/bin/publish
ADDED
@@ -0,0 +1,47 @@
|
|
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}
|
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.30
|
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.0
|
108
105
|
- - "~>"
|
109
106
|
- !ruby/object:Gem::Version
|
110
107
|
version: '2.0'
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.0.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.0
|
118
115
|
- - "~>"
|
119
116
|
- !ruby/object:Gem::Version
|
120
117
|
version: '2.0'
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: 2.0.0
|
121
121
|
- !ruby/object:Gem::Dependency
|
122
122
|
name: redcarpet
|
123
123
|
requirement: !ruby/object:Gem::Requirement
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- bin/check
|
156
156
|
- bin/codeclimate
|
157
157
|
- bin/prep-release
|
158
|
+
- bin/publish
|
158
159
|
- bin/release
|
159
160
|
- bin/validate-release
|
160
161
|
- config/engines.yml
|
@@ -255,7 +256,7 @@ homepage: https://codeclimate.com
|
|
255
256
|
licenses:
|
256
257
|
- AGPL
|
257
258
|
metadata: {}
|
258
|
-
post_install_message:
|
259
|
+
post_install_message:
|
259
260
|
rdoc_options: []
|
260
261
|
require_paths:
|
261
262
|
- lib
|
@@ -270,8 +271,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
271
|
- !ruby/object:Gem::Version
|
271
272
|
version: '0'
|
272
273
|
requirements: []
|
273
|
-
|
274
|
-
|
274
|
+
rubyforge_project:
|
275
|
+
rubygems_version: 2.6.13
|
276
|
+
signing_key:
|
275
277
|
specification_version: 4
|
276
278
|
summary: Code Climate CLI
|
277
279
|
test_files: []
|