trax_core 0.0.7 → 0.0.71

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
  SHA1:
3
- metadata.gz: 0fea6e82d277b0d2b84405221ea0c6604efbc2d1
4
- data.tar.gz: 19e536032336156466c42a90df643e080f2a584e
3
+ metadata.gz: 00148fce6abf94b4bae0f495890d58d637c7ef7c
4
+ data.tar.gz: 6b997761c5627bef815cadab245859c82b08e1d1
5
5
  SHA512:
6
- metadata.gz: 02861133c520bfb36217068f12ba983d865bf5d87d478d34e9486753a8e50073250f12ee3f4ddb72384593ceffdb5f629da35ec81220b3e84440154550d79a84
7
- data.tar.gz: ef5faec34cb92cf6c37078f979911955f02c6c13a45320a1201479b8a061e532a3c7a90b161c5dba4af3b8d61d290da27b9b6c27092dabe989c68ccd1d0871fc
6
+ metadata.gz: 5135d5b5f0937409b9149c47c9b38fc813192d7b0bd3637a10181ceea66aabc5f833ed60bad04aec99c380265dc0462d58eed83d177b9a67910d4fd0656aa234
7
+ data.tar.gz: fd4d5910f334c643e5b1120098f1d601dab9a1facd9473359f1211df0dbeda18ffee17ac95408c91f3b3e753f187f0d8ba204010873fd7d62df382d80dc6fc49
@@ -1,3 +1,4 @@
1
+ #note this has been loading some namespaces twice in some cases, so dont use me yet.
1
2
  module Trax
2
3
  module Core
3
4
  module EagerAutoloadNamespace
@@ -19,7 +19,6 @@ module Trax
19
19
  trace.disable
20
20
 
21
21
  if base.instance_variable_defined?(:@_after_extended_block)
22
- puts "CALLING AFTER EXTENDED"
23
22
  base.instance_variable_get(:@_after_extended_block).call
24
23
  end
25
24
  end
@@ -27,8 +26,6 @@ module Trax
27
26
 
28
27
  trace.enable
29
28
 
30
- super(base)
31
-
32
29
  mixin_namespace.register_mixin(base) unless self == ::Trax::Core::Mixin
33
30
  end
34
31
 
data/lib/trax/core.rb CHANGED
@@ -20,6 +20,5 @@ module Trax
20
20
  autoload :Inheritance
21
21
  autoload :Mixin
22
22
  autoload :Mixable
23
- autoload :MixinRegistry
24
23
  end
25
24
  end
@@ -1,3 +1,3 @@
1
1
  module TraxCore
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.71"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trax_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.71
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Ayre
@@ -281,7 +281,6 @@ files:
281
281
  - lib/trax/core/isolated_mixin.rb
282
282
  - lib/trax/core/mixable.rb
283
283
  - lib/trax/core/mixin.rb
284
- - lib/trax/core/mixin_registry.rb
285
284
  - lib/trax_core.rb
286
285
  - lib/trax_core/version.rb
287
286
  - spec/spec_helper.rb
@@ -1,10 +0,0 @@
1
- module Trax
2
- module Core
3
- class MixinRegistry
4
- def self.extended(base)
5
- base.extend(::ActiveSupport::PerThreadRegistry)
6
- super(base)
7
- end
8
- end
9
- end
10
- end