skyltmax_config 0.0.4 → 0.0.6
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/.gitignore +1 -0
- data/AGENTS.md +650 -0
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +1 -1
- data/LICENSE +1 -1
- data/README.md +26 -13
- data/lib/skyltmax_config/version.rb +5 -0
- data/lib/skyltmax_config.rb +4 -0
- data/package.json +32 -7
- data/pnpm-lock.yaml +1237 -888
- data/skyltmax_config.gemspec +16 -7
- metadata +11 -7
- data/.devcontainer/.bootdone +0 -2
data/skyltmax_config.gemspec
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
$LOAD_PATH.push File.expand_path("./lib", __dir__)
|
|
4
|
+
require "skyltmax_config/version"
|
|
5
|
+
|
|
3
6
|
Gem::Specification.new do |s|
|
|
4
7
|
s.name = "skyltmax_config"
|
|
5
|
-
s.version =
|
|
8
|
+
s.version = SkyltmaxConfig::VERSION
|
|
9
|
+
s.authors = ["Signmax AB"]
|
|
10
|
+
s.email = ["team@signomatic.ee"]
|
|
6
11
|
s.platform = Gem::Platform::RUBY
|
|
7
|
-
|
|
8
|
-
s.
|
|
12
|
+
|
|
13
|
+
s.required_ruby_version = ">= 3.4"
|
|
14
|
+
s.required_rubygems_version = ">= 3.2"
|
|
15
|
+
|
|
16
|
+
s.summary = "Reasonable Rubocop configs."
|
|
9
17
|
s.homepage = "https://github.com/skyltmax/config"
|
|
10
|
-
s.authors = ["Skyltmax"]
|
|
11
18
|
s.license = "MIT"
|
|
19
|
+
|
|
12
20
|
s.metadata = {
|
|
13
|
-
"homepage_uri"
|
|
14
|
-
"source_code_uri"
|
|
15
|
-
"bug_tracker_uri"
|
|
21
|
+
"homepage_uri" => "https://github.com/skyltmax/config#readme",
|
|
22
|
+
"source_code_uri" => "https://github.com/skyltmax/config",
|
|
23
|
+
"bug_tracker_uri" => "https://github.com/skyltmax/config/issues",
|
|
24
|
+
"allowed_push_host" => "https://rubygems.org",
|
|
16
25
|
}
|
|
17
26
|
|
|
18
27
|
# include all tracked files so packaged gem mirrors the repo's config assets
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skyltmax_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Signmax AB
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
@@ -83,16 +83,18 @@ dependencies:
|
|
|
83
83
|
- - "~>"
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
85
|
version: '13.0'
|
|
86
|
+
email:
|
|
87
|
+
- team@signomatic.ee
|
|
86
88
|
executables: []
|
|
87
89
|
extensions: []
|
|
88
90
|
extra_rdoc_files: []
|
|
89
91
|
files:
|
|
90
|
-
- ".devcontainer/.bootdone"
|
|
91
92
|
- ".devcontainer/boot.sh"
|
|
92
93
|
- ".devcontainer/devcontainer.json"
|
|
93
94
|
- ".devcontainer/docker-compose.yml"
|
|
94
95
|
- ".gitignore"
|
|
95
96
|
- ".rubocop.yml"
|
|
97
|
+
- AGENTS.md
|
|
96
98
|
- CHANGELOG.md
|
|
97
99
|
- Gemfile
|
|
98
100
|
- Gemfile.lock
|
|
@@ -103,6 +105,7 @@ files:
|
|
|
103
105
|
- eslint.js
|
|
104
106
|
- index.js
|
|
105
107
|
- lib/skyltmax_config.rb
|
|
108
|
+
- lib/skyltmax_config/version.rb
|
|
106
109
|
- package.json
|
|
107
110
|
- pnpm-lock.yaml
|
|
108
111
|
- prettier.js
|
|
@@ -119,6 +122,7 @@ metadata:
|
|
|
119
122
|
homepage_uri: https://github.com/skyltmax/config#readme
|
|
120
123
|
source_code_uri: https://github.com/skyltmax/config
|
|
121
124
|
bug_tracker_uri: https://github.com/skyltmax/config/issues
|
|
125
|
+
allowed_push_host: https://rubygems.org
|
|
122
126
|
rdoc_options: []
|
|
123
127
|
require_paths:
|
|
124
128
|
- lib
|
|
@@ -126,14 +130,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
126
130
|
requirements:
|
|
127
131
|
- - ">="
|
|
128
132
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: 3.4
|
|
133
|
+
version: '3.4'
|
|
130
134
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
135
|
requirements:
|
|
132
136
|
- - ">="
|
|
133
137
|
- !ruby/object:Gem::Version
|
|
134
|
-
version: '
|
|
138
|
+
version: '3.2'
|
|
135
139
|
requirements: []
|
|
136
|
-
rubygems_version: 3.6.
|
|
140
|
+
rubygems_version: 3.6.9
|
|
137
141
|
specification_version: 4
|
|
138
|
-
summary:
|
|
142
|
+
summary: Reasonable Rubocop configs.
|
|
139
143
|
test_files: []
|
data/.devcontainer/.bootdone
DELETED