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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afa14f68e897944a552060844aa714985c5b7da3985bdd312a89b2cf2613af2d
4
- data.tar.gz: 352e939bc7428fba6151e32bb62a1130fac385e012a36d1da1a972e77dc214df
3
+ metadata.gz: 140afd3a364777b6f9155a00a58a69ad22fa0a3abf88d074eba4e46bac5e541d
4
+ data.tar.gz: 7e3350df35c40dc0c15ba1d8cbd5e6985703f9a88b27b536222faa7d105a5bde
5
5
  SHA512:
6
- metadata.gz: b7ce20618dd28fa3d784115aa64f0580250eff38461c935a6d6ac8e2084e5f9ac56fb7d1905077326c10e055e85b049588491ade6701549d1103540acb2c9577
7
- data.tar.gz: 50be617513919573038a056399decae6bfa00041f78edd9afc75f12998e1c44503b7508b6160f71f8f64183c0db78cb23e8e5caf3ea4e7468bcd418a5118b8b2
6
+ metadata.gz: 892dde087a2649846c1d47134154a23fc9dcb2aa1f7d5b86b3e8b31493771ec0ad850a593c31b7bf02fde735823520e9dfde0568f70854435f5583583ba24c1e
7
+ data.tar.gz: f3a52b7c5b84bb5bb15802d27c1378bb91c9613f382db2eb4901d6d7675d90660fb61c3f65047f1c32393a6f87e7004bf690355d48c1ac5542494c22178dc72a
data/README.md CHANGED
@@ -13,7 +13,7 @@ Heimdall is a simple feature gate library that provides a mechanism to control a
13
13
  Add this line to your application's Gemfile:
14
14
 
15
15
  ```ruby
16
- gem 'heimdall'
16
+ gem 'vp-heimdall'
17
17
  ```
18
18
 
19
19
  And then execute:
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 = "Write a short summary, because RubyGems requires one."
12
- spec.description = "Write a longer description or delete this line."
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Heimdall
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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: Write a longer description or delete this line.
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: Write a short summary, because RubyGems requires one.
71
+ summary: Heimdall is a simple feature gate library.
69
72
  test_files: []