git-trend 1.2.8 → 1.2.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b30372f0e002b9968b9282bee0b19aabe1228c193c7a2e3a680d7a7d8bb4115
4
- data.tar.gz: cc5c8be729e2fe42e449f0c4bbdb92900a2a559b375a859b16ca2fdadcfe6519
3
+ metadata.gz: c515ab8268a8e8e5f67f8a17931e813d5989dabd94f33395583286662bc0b791
4
+ data.tar.gz: d6937ec921f004f2d951a9d5da9d410c72982440cb824ad92abe095361c10165
5
5
  SHA512:
6
- metadata.gz: 84350b86263cb800468a322906051a25e80f833a1c17940ea108c2dd4d181318b45074ec1da1dfe97962c846d6e95a8945848ef4d6dfbaed1528c4171313aeb2
7
- data.tar.gz: 1b6e8013a787a4f74f7b6e116e4668357c1496761a5bf1cd133bf48b8affe06962489740733c128ecf0ad55f663dbefa317173da0cd5eaff41cbbbffb1b86e91
6
+ metadata.gz: 6950a80e2186bf6742702f7f00261ef1c643ce893db17f2000def3f647407804b4de6f0ea5cf398027f8aa5e842672e4d1b6c22810cf791bf9ea04ffa15acc0a
7
+ data.tar.gz: 719d208ea9cf6e008667007dce28838197d06ff8cdb5360c146195760e2158b4376a77a95ea9dc68cb10e0bec07afb765084e68ee3bfa50b43dd6c5f71664fb8
@@ -0,0 +1,76 @@
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: '18 4 * * 3'
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
+ # Use only 'java' to analyze code written in Java, Kotlin or both
38
+ # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
39
+ # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
40
+
41
+ steps:
42
+ - name: Checkout repository
43
+ uses: actions/checkout@v3
44
+
45
+ # Initializes the CodeQL tools for scanning.
46
+ - name: Initialize CodeQL
47
+ uses: github/codeql-action/init@v2
48
+ with:
49
+ languages: ${{ matrix.language }}
50
+ # If you wish to specify custom queries, you can do so here or in a config file.
51
+ # By default, queries listed here will override any specified in a config file.
52
+ # Prefix the list here with "+" to use these queries and those in the config file.
53
+
54
+ # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
55
+ # queries: security-extended,security-and-quality
56
+
57
+
58
+ # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
59
+ # If this step fails, then you should remove it and run the build manually (see below)
60
+ - name: Autobuild
61
+ uses: github/codeql-action/autobuild@v2
62
+
63
+ # ℹ️ Command-line programs to run using the OS shell.
64
+ # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
65
+
66
+ # If the Autobuild fails above, remove it and uncomment the following three lines.
67
+ # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
68
+
69
+ # - run: |
70
+ # echo "Run, Build Application using script"
71
+ # ./location_of_script_within_repo/buildscript.sh
72
+
73
+ - name: Perform CodeQL Analysis
74
+ uses: github/codeql-action/analyze@v2
75
+ with:
76
+ category: "/language:${{matrix.language}}"
data/CHANGELOG.md CHANGED
@@ -1,28 +1,32 @@
1
- ## v1.2.8 (Mon Jan 31)
1
+ ## v1.2.9 (Mon Mar 13 2023)
2
+
3
+ - Upgrade gem [3f79648]
4
+
5
+ ## v1.2.8 (Mon Jan 31 2022)
2
6
 
3
7
  - Fix changing HTML structure [524bed8]
4
8
 
5
- ## v1.2.7 (Sun Aug 8)
9
+ ## v1.2.7 (Sun Aug 8 2021)
6
10
 
7
11
  - Correspond to the new structure of HTML [a708fd4]
8
12
 
9
- ## v1.2.6 (Sun Aug 8)
13
+ ## v1.2.6 (Sun Aug 8 2021)
10
14
 
11
15
  - Update gems
12
16
 
13
- ## v1.2.5 (Sat Aug 8)
17
+ ## v1.2.5 (Sat Aug 8 2020)
14
18
 
15
19
  - Eliminate a warning of Thor [781baf4]
16
20
 
17
- ## v1.2.4 (Mon Mar 2)
21
+ ## v1.2.4 (Mon Mar 2 2020)
18
22
 
19
23
  - Fix languages without linefeeds [ecc63af]
20
24
 
21
- ## v1.2.3 (Mon Mar 2)
25
+ ## v1.2.3 (Mon Mar 2 2020)
22
26
 
23
27
  - Fix wrong interger format of star [dbdc344]
24
28
 
25
- ## v1.2.2 (Sun Dec 15)
29
+ ## v1.2.2 (Sun Dec 15 2019)
26
30
 
27
31
  - Update gem [4f11bc0]
28
32
 
data/git-trend.gemspec CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.add_dependency "addressable", "~> 2.8"
31
31
  spec.add_dependency "mb_string"
32
- spec.add_dependency "mechanize", ">= 2.7.5", "< 2.9.0"
32
+ spec.add_dependency "mechanize", ">= 2.8.5", "< 2.9.0"
33
33
  spec.add_dependency "thor", ">= 0.20.0", "< 1.3.0"
34
34
  spec.add_dependency "unicode-display_width"
35
35
 
@@ -41,9 +41,9 @@ Gem::Specification.new do |spec|
41
41
  spec.add_development_dependency "rubocop-rails"
42
42
 
43
43
  spec.add_development_dependency "pry-byebug"
44
- spec.add_development_dependency "rspec", "~> 3.10.0"
44
+ spec.add_development_dependency "rspec", "~> 3.12.0"
45
45
  spec.add_development_dependency "simplecov", "~>0.16.1"
46
- spec.add_development_dependency "webmock", "~> 3.14.0"
46
+ spec.add_development_dependency "webmock", "~> 3.18.1"
47
47
 
48
48
  spec.add_development_dependency "coveralls", "~> 0.8.23"
49
49
  end
@@ -1,3 +1,3 @@
1
1
  module GitTrend
2
- VERSION = "1.2.8"
2
+ VERSION = "1.2.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-trend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.8
4
+ version: 1.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - rochefort
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-31 00:00:00.000000000 Z
11
+ date: 2023-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -44,7 +44,7 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 2.7.5
47
+ version: 2.8.5
48
48
  - - "<"
49
49
  - !ruby/object:Gem::Version
50
50
  version: 2.9.0
@@ -54,7 +54,7 @@ dependencies:
54
54
  requirements:
55
55
  - - ">="
56
56
  - !ruby/object:Gem::Version
57
- version: 2.7.5
57
+ version: 2.8.5
58
58
  - - "<"
59
59
  - !ruby/object:Gem::Version
60
60
  version: 2.9.0
@@ -182,14 +182,14 @@ dependencies:
182
182
  requirements:
183
183
  - - "~>"
184
184
  - !ruby/object:Gem::Version
185
- version: 3.10.0
185
+ version: 3.12.0
186
186
  type: :development
187
187
  prerelease: false
188
188
  version_requirements: !ruby/object:Gem::Requirement
189
189
  requirements:
190
190
  - - "~>"
191
191
  - !ruby/object:Gem::Version
192
- version: 3.10.0
192
+ version: 3.12.0
193
193
  - !ruby/object:Gem::Dependency
194
194
  name: simplecov
195
195
  requirement: !ruby/object:Gem::Requirement
@@ -210,14 +210,14 @@ dependencies:
210
210
  requirements:
211
211
  - - "~>"
212
212
  - !ruby/object:Gem::Version
213
- version: 3.14.0
213
+ version: 3.18.1
214
214
  type: :development
215
215
  prerelease: false
216
216
  version_requirements: !ruby/object:Gem::Requirement
217
217
  requirements:
218
218
  - - "~>"
219
219
  - !ruby/object:Gem::Version
220
- version: 3.14.0
220
+ version: 3.18.1
221
221
  - !ruby/object:Gem::Dependency
222
222
  name: coveralls
223
223
  requirement: !ruby/object:Gem::Requirement
@@ -242,6 +242,7 @@ extra_rdoc_files: []
242
242
  files:
243
243
  - ".coveralls.yml"
244
244
  - ".github/dependabot.yml"
245
+ - ".github/workflows/codeql.yml"
245
246
  - ".gitignore"
246
247
  - ".rspec"
247
248
  - ".rubocop.yml"
@@ -297,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
298
  - !ruby/object:Gem::Version
298
299
  version: '0'
299
300
  requirements: []
300
- rubygems_version: 3.2.22
301
+ rubygems_version: 3.4.1
301
302
  signing_key:
302
303
  specification_version: 4
303
304
  summary: CLI-Based tool that show Trending repository on github