skyltmax_config 0.0.5 → 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 +8 -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 +19 -6
- data/pnpm-lock.yaml +1237 -888
- data/skyltmax_config.gemspec +4 -1
- metadata +3 -2
- data/.devcontainer/.bootdone +0 -2
data/skyltmax_config.gemspec
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
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
|
|
6
9
|
s.authors = ["Signmax AB"]
|
|
7
10
|
s.email = ["team@signomatic.ee"]
|
|
8
11
|
s.platform = Gem::Platform::RUBY
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
@@ -89,12 +89,12 @@ executables: []
|
|
|
89
89
|
extensions: []
|
|
90
90
|
extra_rdoc_files: []
|
|
91
91
|
files:
|
|
92
|
-
- ".devcontainer/.bootdone"
|
|
93
92
|
- ".devcontainer/boot.sh"
|
|
94
93
|
- ".devcontainer/devcontainer.json"
|
|
95
94
|
- ".devcontainer/docker-compose.yml"
|
|
96
95
|
- ".gitignore"
|
|
97
96
|
- ".rubocop.yml"
|
|
97
|
+
- AGENTS.md
|
|
98
98
|
- CHANGELOG.md
|
|
99
99
|
- Gemfile
|
|
100
100
|
- Gemfile.lock
|
|
@@ -105,6 +105,7 @@ files:
|
|
|
105
105
|
- eslint.js
|
|
106
106
|
- index.js
|
|
107
107
|
- lib/skyltmax_config.rb
|
|
108
|
+
- lib/skyltmax_config/version.rb
|
|
108
109
|
- package.json
|
|
109
110
|
- pnpm-lock.yaml
|
|
110
111
|
- prettier.js
|
data/.devcontainer/.bootdone
DELETED