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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4eab9de685d2ede692ce24cf2b1db8d939b9f316e3ede26c6d4ef4796bee6ffe
4
- data.tar.gz: 2db33c91a5571087296900d9edf2ec012c397aa6bab028d731bfefde372d2c81
3
+ metadata.gz: 1c4b66b7859d281a7b6ae9baebb196c92445272d0b3b716b69c7f3d70784c65a
4
+ data.tar.gz: b00b31088015ec64145bb7b4b5f8063e8509c1d42e705ffda8dadb6d8de355ca
5
5
  SHA512:
6
- metadata.gz: 131419c9830fafc66f0a169cf756f2ea0017e635dd877a3b0d50f2227973aa6f6e4462af2dae4bec516b45bee9e5399800a8f72daa331daf439122cca3fea41a
7
- data.tar.gz: 3fa93d5e3b293f540e8f354b0bf091737e76b19ebdace9ad3a610d7444f41203661f2bf4d384c5162cf084b7149ed519b45a16082eaedb5280b45c93fc86ec3c
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CruFlags
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: cru-flags
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
  - 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