appsignal 3.0.9-java → 3.0.13-java
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 +4 -4
- data/.gitmodules +3 -0
- data/.rubocop.yml +3 -4
- data/.semaphore/semaphore.yml +460 -39
- data/CHANGELOG.md +25 -0
- data/README.md +13 -13
- data/Rakefile +11 -10
- data/build_matrix.yml +106 -32
- data/ext/agent.yml +40 -19
- data/lib/appsignal/cli/diagnose.rb +8 -4
- data/lib/appsignal/version.rb +1 -1
- data/script/install_lintje +18 -0
- metadata +5 -3
data/lib/appsignal/version.rb
CHANGED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
set -eu
|
4
|
+
|
5
|
+
mkdir -p $HOME/bin
|
6
|
+
cache_key=v1-lintje-$LINTJE_VERSION
|
7
|
+
cache restore $cache_key
|
8
|
+
|
9
|
+
# File exists and is executable
|
10
|
+
if [ -x "$HOME/bin/lintje" ]; then
|
11
|
+
echo "Restored Lintje $LINTJE_VERSION from cache"
|
12
|
+
else
|
13
|
+
echo "Downloading Lintje $LINTJE_VERSION"
|
14
|
+
curl -L \
|
15
|
+
https://github.com/tombruijn/lintje/releases/download/v$LINTJE_VERSION/x86_64-unknown-linux-gnu.tar.gz | \
|
16
|
+
tar -xz --directory $HOME/bin
|
17
|
+
cache store $cache_key $HOME/bin/lintje
|
18
|
+
fi
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appsignal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.13
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Robert Beekman
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-08-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -150,6 +150,7 @@ files:
|
|
150
150
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
151
151
|
- ".github/ISSUE_TEMPLATE/chore.md"
|
152
152
|
- ".gitignore"
|
153
|
+
- ".gitmodules"
|
153
154
|
- ".rspec"
|
154
155
|
- ".rubocop.yml"
|
155
156
|
- ".rubocop_todo.yml"
|
@@ -284,6 +285,7 @@ files:
|
|
284
285
|
- mono.yml
|
285
286
|
- resources/appsignal.yml.erb
|
286
287
|
- resources/cacert.pem
|
288
|
+
- script/install_lintje
|
287
289
|
- spec/.rubocop.yml
|
288
290
|
- spec/lib/appsignal/auth_check_spec.rb
|
289
291
|
- spec/lib/appsignal/capistrano2_spec.rb
|
@@ -427,7 +429,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
427
429
|
- !ruby/object:Gem::Version
|
428
430
|
version: '0'
|
429
431
|
requirements: []
|
430
|
-
rubygems_version: 3.2.
|
432
|
+
rubygems_version: 3.2.25
|
431
433
|
signing_key:
|
432
434
|
specification_version: 4
|
433
435
|
summary: Logs performance and exception data from your app to appsignal.com
|