vp-heimdall 0.1.1 → 0.1.2
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/README.md +1 -1
- data/heimdall.gemspec +4 -2
- data/lib/heimdall/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 140afd3a364777b6f9155a00a58a69ad22fa0a3abf88d074eba4e46bac5e541d
|
4
|
+
data.tar.gz: 7e3350df35c40dc0c15ba1d8cbd5e6985703f9a88b27b536222faa7d105a5bde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 892dde087a2649846c1d47134154a23fc9dcb2aa1f7d5b86b3e8b31493771ec0ad850a593c31b7bf02fde735823520e9dfde0568f70854435f5583583ba24c1e
|
7
|
+
data.tar.gz: f3a52b7c5b84bb5bb15802d27c1378bb91c9613f382db2eb4901d6d7675d90660fb61c3f65047f1c32393a6f87e7004bf690355d48c1ac5542494c22178dc72a
|
data/README.md
CHANGED
data/heimdall.gemspec
CHANGED
@@ -8,8 +8,10 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["hari-prasad-01"]
|
9
9
|
spec.email = ["hari@volopay.co"]
|
10
10
|
|
11
|
-
spec.summary = "
|
12
|
-
spec.description = "
|
11
|
+
spec.summary = "Heimdall is a simple feature gate library."
|
12
|
+
spec.description = "Heimdall provides a mechanism to control access to features in your application.
|
13
|
+
It uses a tree structure to represent feature flags and allows you to build and manage feature trees from templates.
|
14
|
+
The library also includes access control checks to ensure that only authorized users can access certain features."
|
13
15
|
spec.homepage = "https://github.com/volopay/heimdall"
|
14
16
|
spec.license = "MIT"
|
15
17
|
spec.required_ruby_version = ">= 3.0.0"
|
data/lib/heimdall/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vp-heimdall
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hari-prasad-01
|
@@ -10,7 +10,10 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2025-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: |-
|
14
|
+
Heimdall provides a mechanism to control access to features in your application.
|
15
|
+
It uses a tree structure to represent feature flags and allows you to build and manage feature trees from templates.
|
16
|
+
The library also includes access control checks to ensure that only authorized users can access certain features.
|
14
17
|
email:
|
15
18
|
- hari@volopay.co
|
16
19
|
executables: []
|
@@ -65,5 +68,5 @@ requirements: []
|
|
65
68
|
rubygems_version: 3.5.6
|
66
69
|
signing_key:
|
67
70
|
specification_version: 4
|
68
|
-
summary:
|
71
|
+
summary: Heimdall is a simple feature gate library.
|
69
72
|
test_files: []
|