chkdfront 1.0.2 → 1.0.10

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: 458e82ba5393edd95b576bf99464291253a7a9b9a21386a2629df28965574e4b
4
- data.tar.gz: dde9f1c3d87d5ead9a15fbf9e60ec283fbfa01bd0136c010f7ec4b5c7415e1b4
3
+ metadata.gz: f29cdd2f520b3bca3baa150f0b6b74a3c63594cb39b2e6cb92c0563ed9b82b56
4
+ data.tar.gz: bb0637b92c7354f48549ba786bd01aefe7bc35b8d25a9d9272edf548fc7a1cb4
5
5
  SHA512:
6
- metadata.gz: 1ab944d165abd0d7001b753d9242e0fda7c0099db4a14f659067628218c745f1eb25cef511148ae371ade47953b18f96a7036adca8d318ba2782b5e3cd420cad
7
- data.tar.gz: 352b8be4ceac4e8c63e87ae898f3f59b85664291bec5d8b09b2b35871226b7a1113271e2b7d045b281316de74f4ff9d2d451fcf445b54e69364ee6df5dc157c7
6
+ metadata.gz: e2dacc27d8d8b883d29de9f9fdeed9343fdc9a21cefab7edf784f9936c5ff258ecd5eae84efae3807714179de5c2db3389115053945015c94f3cdf5e88aa1d4b
7
+ data.tar.gz: b284613873f41681e14aefec89ae49898191ceb6e9479344815f5f2be00e5a6c9d3b206e9ef49a46f07b071363765695861d9882356703f2dff555e4040e6120
@@ -0,0 +1,31 @@
1
+ name: Push Ruby Gem
2
+
3
+ on: workflow_dispatch
4
+
5
+ jobs:
6
+ release:
7
+ runs-on: ubuntu-latest
8
+ env:
9
+ GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ with:
13
+ fetch-depth: 0 # need all the commits
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: .ruby-version
17
+ bundler-cache: true
18
+ - uses: actions/setup-node@v2
19
+ - name: Configure Git
20
+ run: |
21
+ git config --local user.email "action@github.com"
22
+ git config --local user.name "GitHub Action"
23
+ - name: Bump and Commit
24
+ run: |
25
+ yarn add standard-version
26
+ yarn run standard-version
27
+ git push --follow-tags
28
+ - name: Push to rubygems.org
29
+ run: |
30
+ gem build *.gemspec
31
+ gem push *.gem
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.7
data/.versionrc.js ADDED
@@ -0,0 +1,20 @@
1
+ version_rb = {
2
+ "filename": "lib/chkdfront/version.rb",
3
+ "updater": {
4
+ readVersion: function(contents) {
5
+ match = contents.match(/^\s*VERSION = ["'](.+)["']$/m)
6
+ return match[1]
7
+ },
8
+ writeVersion: function(contents, version) {
9
+ currentVersion = this.readVersion(contents)
10
+ // this isn't the most reliable, but meh
11
+ return contents.replace(currentVersion, version)
12
+ },
13
+ },
14
+ }
15
+
16
+ module.exports = {
17
+ "bumpFiles": [version_rb],
18
+ "packageFiles": [version_rb],
19
+ "preset": "angular",
20
+ }
data/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [1.0.10](https://github.com/KINGSABRI/chkdfront/compare/v1.0.9...v1.0.10) (2021-06-26)
6
+
7
+
8
+
9
+ ## [1.0.9](https://github.com/KINGSABRI/chkdfront/compare/v1.0.8...v1.0.9) (2021-06-26)
10
+
11
+
12
+
13
+ ## [1.0.8](https://github.com/KINGSABRI/chkdfront/compare/v1.0.7...v1.0.8) (2021-06-26)
14
+
15
+
16
+
17
+ ## [1.0.7](https://github.com/KINGSABRI/chkdfront/compare/v1.0.6...v1.0.7) (2021-06-26)
18
+
19
+
20
+
21
+ ## [1.0.6](https://github.com/KINGSABRI/chkdfront/compare/v1.0.5...v1.0.6) (2021-06-26)
22
+
23
+
24
+
25
+ ## [1.0.5](https://github.com/KINGSABRI/chkdfront/compare/v1.0.3...v1.0.5) (2021-06-26)
26
+
27
+
28
+
29
+ ## 1.0.3 (2021-06-26)
data/chkdfront.gemspec CHANGED
@@ -31,7 +31,8 @@ Gem::Specification.new do |spec|
31
31
  spec.add_dependency 'adomain'
32
32
 
33
33
  spec.add_development_dependency "bundler", "~> 2.0"
34
- spec.add_development_dependency "rake", "~> 10.0"
34
+ spec.add_development_dependency "rake", ">= 12.3.3"
35
+
35
36
 
36
37
  spec.metadata['source_code_uri'] = 'https://github.com/KINGSABRI/chkdfront'
37
38
  spec.metadata['bug_tracker_uri'] = 'https://github.com/KINGSABRI/chkdfront/issues'
@@ -1,3 +1,3 @@
1
1
  module ChkDFront
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chkdfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - "@KINGSABRI"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-03 00:00:00.000000000 Z
11
+ date: 2021-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cli-ui
@@ -112,16 +112,16 @@ dependencies:
112
112
  name: rake
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - "~>"
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: '10.0'
117
+ version: 12.3.3
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - "~>"
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
- version: '10.0'
124
+ version: 12.3.3
125
125
  description: Check Domain Fronting (chkdfront) - It checks if domain fronting implementation
126
126
  is working.
127
127
  email:
@@ -131,7 +131,11 @@ executables:
131
131
  extensions: []
132
132
  extra_rdoc_files: []
133
133
  files:
134
+ - ".github/workflows/gem-push.yml"
134
135
  - ".gitignore"
136
+ - ".ruby-version"
137
+ - ".versionrc.js"
138
+ - CHANGELOG.md
135
139
  - Gemfile
136
140
  - README.md
137
141
  - Rakefile
@@ -164,8 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
168
  - !ruby/object:Gem::Version
165
169
  version: '0'
166
170
  requirements: []
167
- rubyforge_project:
168
- rubygems_version: 2.7.6
171
+ rubygems_version: 3.1.6
169
172
  signing_key:
170
173
  specification_version: 4
171
174
  summary: Check Domain Fronting (chkdfront) - It checks if domain fronting is working.