twiglet 3.3.2 → 3.3.6

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: 1b8119a5caed97ef5f329bfba3ebf1bd30a1d7f33db1b3e6908007f09facd2a0
4
- data.tar.gz: c90de0a6b8cbc5e111f699cc9c0b1d9b0123d1e6745a7f3f93d0a3b8f52321a2
3
+ metadata.gz: 42b3770eec2899021ad740e0d451d9991b02191f25e7922fdb93875ef4b82cec
4
+ data.tar.gz: e9852e87bb9b3a1e8450b0cb0f22a3c493c10a679e99caa5df8a9a5727288c4f
5
5
  SHA512:
6
- metadata.gz: 94042f642ab02be62ec592691084df2445ea91c7ebccad768a270ef5b0c55e5d3152a935b8f21f1addd58e76f5b57192d864db2808262fd387969e2cfafc7d02
7
- data.tar.gz: b050780d6193b3d69b2f5372bc2cf6870dd0ff139f42db12c2c7602f7ec5ecd5f810c71c8f77b7bdc0facfe3a5922d6de1a4733f64b8db1fe6a15a31e7327212
6
+ metadata.gz: d9456fe51a8863a3f9f727a5d15866d41681c4919b131c0551a6ad1eec7624ac7135716399f86f8d031ee905c5a04a67853d1d1c14d78d9f6ac5ac89a014efa2
7
+ data.tar.gz: f0d73e71ec194a89affbe2039ba6fa27ec4cc58b8f82f26defb07cfb2c481c64431448eda7572368a711e139b795f2add8d4d81d1c99f413ceece3698ee807f1
@@ -0,0 +1,70 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: [ master ]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: [ master ]
20
+ schedule:
21
+ - cron: '42 8 * * 0'
22
+
23
+ jobs:
24
+ analyze:
25
+ name: Analyze
26
+ runs-on: ubuntu-latest
27
+ permissions:
28
+ actions: read
29
+ contents: read
30
+ security-events: write
31
+
32
+ strategy:
33
+ fail-fast: false
34
+ matrix:
35
+ language: [ 'ruby' ]
36
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
37
+ # Learn more about CodeQL language support at https://git.io/codeql-language-support
38
+
39
+ steps:
40
+ - name: Checkout repository
41
+ uses: actions/checkout@v2
42
+
43
+ # Initializes the CodeQL tools for scanning.
44
+ - name: Initialize CodeQL
45
+ uses: github/codeql-action/init@v1
46
+ with:
47
+ languages: ${{ matrix.language }}
48
+ # If you wish to specify custom queries, you can do so here or in a config file.
49
+ # By default, queries listed here will override any specified in a config file.
50
+ # Prefix the list here with "+" to use these queries and those in the config file.
51
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
52
+
53
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
+ # If this step fails, then you should remove it and run the build manually (see below)
55
+ - name: Autobuild
56
+ uses: github/codeql-action/autobuild@v1
57
+
58
+ # ℹ️ Command-line programs to run using the OS shell.
59
+ # 📚 https://git.io/JvXDl
60
+
61
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
62
+ # and modify them (or add more) to build your code if your project
63
+ # uses a compiled language
64
+
65
+ #- run: |
66
+ # make bootstrap
67
+ # make release
68
+
69
+ - name: Perform CodeQL Analysis
70
+ uses: github/codeql-action/analyze@v1
@@ -1,4 +1,5 @@
1
- name: "dobby action"
1
+
2
+ name: "Dobby action"
2
3
  on:
3
4
  issue_comment:
4
5
  types: [created]
@@ -6,10 +7,20 @@ jobs:
6
7
  pr_commented:
7
8
  runs-on: ubuntu-20.04
8
9
  if: startsWith(github.event.comment.body, '/dobby')
9
-
10
+ env:
11
+ BUNDLE_WITHOUT: "development:test"
10
12
  steps:
11
- - name: bump version
12
- uses: simplybusiness/dobby@v2.1.0
13
+ - name: Chekcout action
14
+ uses: actions/checkout@v2
15
+ with:
16
+ repository: 'simplybusiness/dobby'
17
+ ref: 'v3.0.0'
18
+ - name: Set up ruby
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ bundler-cache: true
22
+ - name: Bump version
23
+ uses: simplybusiness/dobby@v3.0.0
13
24
  env:
14
25
  DOBBY_APP_ID: ${{ secrets.DOBBY_APP_ID }}
15
26
  DOBBY_PRIVATE_KEY: ${{ secrets.DOBBY_PRIVATE_KEY }}
data/catalog-info.yaml ADDED
@@ -0,0 +1,12 @@
1
+ apiVersion: backstage.io/v1alpha1
2
+ kind: Component
3
+ metadata:
4
+ name: twiglet
5
+ description: simple logging
6
+ spec:
7
+ type: library
8
+ lifecycle: production
9
+ owner: silversmiths
10
+ dependsOn:
11
+ - "Component:json-schema"
12
+ - "Component:simplycop"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Twiglet
4
- VERSION = '3.3.2'
4
+ VERSION = '3.3.6'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twiglet
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-30 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json-schema
@@ -89,6 +89,7 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - ".github/CODEOWNERS"
91
91
  - ".github/dependabot.yml"
92
+ - ".github/workflows/codeql-analysis.yml"
92
93
  - ".github/workflows/dobby-actions.yml"
93
94
  - ".github/workflows/gem-publish.yml"
94
95
  - ".github/workflows/ruby.yml"
@@ -102,6 +103,7 @@ files:
102
103
  - Makefile
103
104
  - README.md
104
105
  - Rakefile
106
+ - catalog-info.yaml
105
107
  - docs/CODE_OF_CONDUCT.md
106
108
  - docs/RATIONALE.md
107
109
  - docs/index.md
@@ -143,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
145
  - !ruby/object:Gem::Version
144
146
  version: '0'
145
147
  requirements: []
146
- rubygems_version: 3.2.15
148
+ rubygems_version: 3.2.22
147
149
  signing_key:
148
150
  specification_version: 4
149
151
  summary: Twiglet