active-component 0.0.6 → 0.0.7

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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_component/context.rb +1 -1
  3. data/lib/active_component/version.rb +1 -1
  4. data/test/dummy/log/development.log +0 -726
  5. data/test/dummy/{app/templates/dummy_component.mustache → log/production.log} +0 -0
  6. data/test/dummy/{db/development.sqlite3 → log/server.log} +0 -0
  7. data/test/dummy/log/test.log +1 -2780
  8. metadata +5 -37
  9. data/test/dummy/app/components/application_component.rb +0 -5
  10. data/test/dummy/app/components/dummy_component.rb +0 -6
  11. data/test/dummy/app/components/message_component.rb +0 -10
  12. data/test/dummy/app/templates/message_component.mustache +0 -1
  13. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/1c9faaf28d05409b88ad3113374d613c +0 -0
  15. data/test/dummy/tmp/cache/assets/development/sprockets/2822de3b22c28bd5e718c9bf500457b2 +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sprockets/40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/a9f028f7a492b5907ed80268be8f50f4 +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/b878faf942403e313a5b103e5d80488e +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/edbef6e0d0a4742346cf479f2c522eb0 +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7de4ea36b77ba8216a9ac0c9788cf5fdc15a64f
4
- data.tar.gz: 5eba3cd8f644f1fdd92d2875c6176b895b162a8b
3
+ metadata.gz: bcb8f44437e5e17143a734d22165b998f38ac334
4
+ data.tar.gz: e9cf276676957b12c99908c8040d50d2c65690c9
5
5
  SHA512:
6
- metadata.gz: 4619068c02a72ad5aeee95e4a6c9495fa551b41b5cd19515b798f104f34d64f6c96bbd1926e2fc0683048fde8c4910e29df26557ff4606096f4e01a4fe0b9cab
7
- data.tar.gz: 24f96ae408f07f70d7464dd26105a90c300c1852914e47da7226930694f2ae96db0fb005b5c78f0093fb5cd41453dc528b7bb70f629286fc01026700ab3ab71e
6
+ metadata.gz: 68e130a5c39615f4dd7e0a493dc3185bf4f2ac893d3987594154a71b29c771ed001ec35fdb6bf7e7d8a62878c7fb63012c93b0d31201f7826152d15e4245e607
7
+ data.tar.gz: 102ab3d90b8b47605754ca20c6bd287af3952791291b2f331a07f4f231de318afbcbf2ae77ebb2f12713be39a72a38bd7bed85d57b66945b4424c797bd4405b8
@@ -31,7 +31,7 @@ module ActiveComponent
31
31
 
32
32
  def set_controller(controller)
33
33
  @@controllers[Thread.current.object_id] = controller
34
- ObjectSpace.define_finalizer Thread.current, -> (id){ @@controllers[id].delete! }
34
+ ObjectSpace.define_finalizer Thread.current, lambda { |id| @@controllers[id].delete! }
35
35
  end
36
36
  end
37
37
 
@@ -1,3 +1,3 @@
1
1
  module ActiveComponent
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end