cru-flags 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/CHANGELOG.md +7 -0
- data/lib/cru-flags.rb +8 -0
- data/lib/cru_flags/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c4b66b7859d281a7b6ae9baebb196c92445272d0b3b716b69c7f3d70784c65a
|
|
4
|
+
data.tar.gz: b00b31088015ec64145bb7b4b5f8063e8509c1d42e705ffda8dadb6d8de355ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bccb98cd22309d5631e4efb800f6391f1a2e3b2dd61b7cfe44b7352f223c4205eb1b3a4d38a048f0390781d5078387fac0030d032d4558bf7c77df2bf75e9dc
|
|
7
|
+
data.tar.gz: fafcc8d687e09d4b6b9e26dc154991db2938ef799c16cf921294303de9cc014c519fe3a010f8f37a04aa98340f35f49ffa5071ebf1463fb93785d0e16f882890
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2](https://github.com/CruGlobal/cru-flags-ruby/compare/cru-flags/v0.1.1...cru-flags/v0.1.2) (2026-08-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* gem "cru-flags" with no require: now actually loads the gem ([#9](https://github.com/CruGlobal/cru-flags-ruby/issues/9)) ([05ce44c](https://github.com/CruGlobal/cru-flags-ruby/commit/05ce44c1b68673487d07d669e96f191c701658d7))
|
|
9
|
+
|
|
3
10
|
## [0.1.1](https://github.com/CruGlobal/cru-flags-ruby/compare/cru-flags/v0.1.0...cru-flags/v0.1.1) (2026-08-24)
|
|
4
11
|
|
|
5
12
|
|
data/lib/cru-flags.rb
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Bundler's autorequire derives the require path from the GEM NAME
|
|
4
|
+
# ("cru-flags" -> "cru-flags", then "cru/flags"), never from the real entry
|
|
5
|
+
# point ("cru_flags") — so `gem "cru-flags"` (no explicit `require:`) loads
|
|
6
|
+
# THIS file. Do not delete: without it, autorequire silently no-ops (the
|
|
7
|
+
# LoadError is swallowed) and the Railtie never loads.
|
|
8
|
+
require "cru_flags"
|
data/lib/cru_flags/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cru-flags
|
|
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
|
- Cru
|
|
@@ -51,6 +51,7 @@ files:
|
|
|
51
51
|
- LICENSE
|
|
52
52
|
- README.md
|
|
53
53
|
- docs/design.md
|
|
54
|
+
- lib/cru-flags.rb
|
|
54
55
|
- lib/cru_flags.rb
|
|
55
56
|
- lib/cru_flags/client.rb
|
|
56
57
|
- lib/cru_flags/document.rb
|