arturo 3.0.0 → 3.0.1

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: 114d46ab7339cbbdd1c2a3a3ec26b030b825d19e34251255ea335e574200da0e
4
- data.tar.gz: efafe224e924eb3a87f48d7bb7db5b61f77d1446c0bec296c929dcf17dac970b
3
+ metadata.gz: 414a786d1d81cd18b31b5d54bc7df6b9c820d13106dcf471721d7383c28e75e8
4
+ data.tar.gz: b42410fd7c9df45c1875958f335e5434a856e154c322b88819dfa20f4eb22877
5
5
  SHA512:
6
- metadata.gz: 258fd4d3264819126bfeaf84acf8ec93cbe28930b09478a061d4c077ac4212cccf78e87762d83532b6ee60652eb1105e48cbd15c4a64d5e0005339fbb6eb4632
7
- data.tar.gz: 5336f810f255103c809286dd9f1560bc775ff466c6e357e6e5e4b9d384226cfdfd532204a1c2970d6e90796a60f829c5002527e5c052c12d9bae5c6ca375e1b5
6
+ metadata.gz: 3044307df2f849112c60bb859ab52b2151634ff891442b1e93328f270ad4adb1ddbb8e1da63e5317ad3b5d365d6c3de3761024e585216f5c7a8a20de5af0aa2a
7
+ data.tar.gz: 592a564c1af2f63d80523f9a41c412bb882dabc14195dc3a1dd73d88220b2e74e1d17c5b4edc444d4a9f3f74b0650e6d5f3bb7e4244765fcbf073a1be2f6dfc3
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'active_record'
3
4
  require 'active_support'
4
5
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Arturo
3
- VERSION = '3.0.0'
3
+ VERSION = '3.0.1'
4
4
  end
data/lib/arturo.rb CHANGED
@@ -1,13 +1,14 @@
1
1
  # frozen_string_literal: true
2
- module Arturo
3
- require 'arturo/null_logger'
4
- require 'arturo/special_handling'
5
- require 'arturo/feature'
6
- require 'arturo/feature_availability'
7
- require 'arturo/feature_management'
8
- require 'arturo/feature_caching'
9
- require 'arturo/engine' if defined?(Rails)
10
2
 
3
+ require_relative 'arturo/null_logger'
4
+ require_relative 'arturo/special_handling'
5
+ require_relative 'arturo/feature_methods'
6
+ require_relative 'arturo/feature_availability'
7
+ require_relative 'arturo/feature_management'
8
+ require_relative 'arturo/feature_caching'
9
+ require_relative 'arturo/engine' if defined?(Rails)
10
+
11
+ module Arturo
11
12
  class << self
12
13
  # Quick check for whether a feature is enabled for a recipient.
13
14
  # @param [String, Symbol] feature_name
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arturo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James A. Rosen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-27 00:00:00.000000000 Z
11
+ date: 2023-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -146,11 +146,11 @@ files:
146
146
  - lib/arturo.rb
147
147
  - lib/arturo/controller_filters.rb
148
148
  - lib/arturo/engine.rb
149
- - lib/arturo/feature.rb
150
149
  - lib/arturo/feature_availability.rb
151
150
  - lib/arturo/feature_caching.rb
152
151
  - lib/arturo/feature_factories.rb
153
152
  - lib/arturo/feature_management.rb
153
+ - lib/arturo/feature_methods.rb
154
154
  - lib/arturo/feature_params_support.rb
155
155
  - lib/arturo/middleware.rb
156
156
  - lib/arturo/no_such_feature.rb