featury 1.0.0.rc16 → 1.0.0.rc17

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: 2cd98a4235a1f9d9340fa5636436c54a70a7fc5fa54948d13ceaf311d9facd13
4
- data.tar.gz: c392d9f3cde18aa65a60078335040b52b1fa43d6e152e133929e4de2bb3fa26c
3
+ metadata.gz: 491815dac66e84a9b49167bf18da77eeedc2d09678eaa2f9f0bff8d92412e3bd
4
+ data.tar.gz: 6da5468fe1f8433300821b314d6f6290199b941020c8785c2b7c863692d26b99
5
5
  SHA512:
6
- metadata.gz: e807ae55d5679f89ab50cdf2a68384eb82d100f0902f0b262e051eccfb0e13fe2b10178204a2e0cf6fd6a4702f9f74a5b8f0d2e2287f46f7ac667415e2c89dc2
7
- data.tar.gz: '0198b0a0a4c9efe3dc5ad9d44b7f619b98950c86607cb13ef133f759a84faca48df9f07782ff51b1874d93403a8d6f5eb71b592f63407b62866d03fa90987e0d'
6
+ metadata.gz: bb45c8f5986cdbeb6c18aabdda320a58844c838eee932ed17f2db90493812d5c79ef4da5652e0f93f67d8f2b245c6c4f09c714c4be54a6bf55fd308a395ef323
7
+ data.tar.gz: b7983574ee2e170fee966888b989cc9dd4603ccea54f479ef87325d1f1736766812041b45d806516466622f193f8c30dc935e0807afe04f655eb27211315daf0
data/README.md CHANGED
@@ -1,3 +1,13 @@
1
+ <p align="center">
2
+ <a href="https://servactory.com" target="_blank">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/servactory/featury/main/.github/logo-dark.svg">
5
+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/servactory/featury/main/.github/logo-light.svg">
6
+ <img alt="Featury" src="https://raw.githubusercontent.com/servactory/featury/main/.github/logo-light.svg" width="350" height="70" style="max-width: 100%;">
7
+ </picture>
8
+ </a>
9
+ </p>
10
+
1
11
  <p align="center">
2
12
  <a href="https://rubygems.org/gems/featury"><img src="https://img.shields.io/gem/v/featury?logo=rubygems&logoColor=fff" alt="Gem version"></a>
3
13
  <a href="https://github.com/servactory/featury/releases"><img src="https://img.shields.io/github/release-date/servactory/featury" alt="Release Date"></a>
@@ -144,9 +154,9 @@ info = User::OnboardingFeature.info
144
154
  ```
145
155
 
146
156
  ```ruby
147
- info.features # Feature flags within one class.
148
- info.groups # Feature groups within one class.
149
- info.tree # Tree of feature flags starting from the current class.
157
+ info.features # Feature flags of the current class.
158
+ info.groups # Feature flag groups of the current class.
159
+ info.tree # Tree of feature flags from the current class.
150
160
  ```
151
161
 
152
162
  ## Contributing
@@ -19,6 +19,11 @@ module Featury
19
19
  )
20
20
  )
21
21
  end
22
+
23
+ # API: Featury Web
24
+ def featury?
25
+ true
26
+ end
22
27
  end
23
28
  end
24
29
  end
@@ -5,7 +5,7 @@ module Featury
5
5
  MAJOR = 1
6
6
  MINOR = 0
7
7
  PATCH = 0
8
- PRE = "rc16"
8
+ PRE = "rc17"
9
9
 
10
10
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join(".")
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: featury
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc16
4
+ version: 1.0.0.rc17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Sokolov
@@ -49,14 +49,14 @@ dependencies:
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: '2.14'
52
+ version: '2.15'
53
53
  type: :runtime
54
54
  prerelease: false
55
55
  version_requirements: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: '2.14'
59
+ version: '2.15'
60
60
  - !ruby/object:Gem::Dependency
61
61
  name: zeitwerk
62
62
  requirement: !ruby/object:Gem::Requirement
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
212
  - !ruby/object:Gem::Version
213
213
  version: '0'
214
214
  requirements: []
215
- rubygems_version: 3.6.7
215
+ rubygems_version: 3.6.9
216
216
  specification_version: 4
217
217
  summary: A set of tools for building reliable services of any complexity
218
218
  test_files: []