cuboid 0.2.4 → 0.2.4.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: 62a4b753db00386ea4858bd2ed61f9ccff0e89cd1aa7fb6c8d7e561e8cda87c3
4
- data.tar.gz: 127005ff2cd7f621f80006f5b75d962ec6b32fb9cfa94f0e4ff86a63e63c7351
3
+ metadata.gz: 79c0b3e985f2a90adb78952b569f9f32b58d5d99fe0b900415e04530ce5b7017
4
+ data.tar.gz: 7d02a4469973ad273cc65816e09f5395cf44f114a250993c6480dd953a14555d
5
5
  SHA512:
6
- metadata.gz: 1e70d2d49b40ab668091b8d70edb50ccdce6b2ce2b19be8b85a38293e88bb3537355c89cd671e2c12ca5a8bce9b143557771c24e7e509dfc43e8319f51ea0ece
7
- data.tar.gz: 72df9cb0de101c88229fc96f526fd50499b109611048c603bc1c61aaeadb5d6d60d601665749d9eb37ee91a83b3dd33acc15449c7c16e689a662de92a7eba99a
6
+ metadata.gz: fc6b0b8f9d99b926212a8806e25d02dd2ea05c448c4a436f628e1c8e9675e204ffdc322812b9329eeb70fab1c7f35b170ed19edf17cd216ceba57e75df188506
7
+ data.tar.gz: 9343edf77b6cc9eeb593f46988b2baceca523a63898dcc05c6a7ec638d6bb65fd0c0e0342f313276dc609ff0ec60b13f61baa0d73e6e0224b9083497a82f6e5b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.2.4.1
2
+
3
+ * `Application`: Added `#application=` to help with inheritance.
4
+
1
5
  # 0.2.4
2
6
 
3
7
  * Made `Server::Instance` services accessible from `Application`.
@@ -214,11 +214,15 @@ class Application
214
214
  super
215
215
 
216
216
  application.prepend PrependMethods
217
- @application = application
217
+ self.application = application
218
218
  end
219
219
 
220
220
  def application
221
- @application ||= nil
221
+ @application
222
+ end
223
+
224
+ def application=( app )
225
+ @application = app
222
226
  end
223
227
 
224
228
  def method_missing( sym, *args, &block )
data/lib/version CHANGED
@@ -1 +1 @@
1
- 0.2.4
1
+ 0.2.4.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuboid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tasos Laskos