fedux_org-stdlib 0.7.0 → 0.7.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
  SHA1:
3
- metadata.gz: 69cda4df42677eaa4cc55556b84ba2bb21238d0f
4
- data.tar.gz: aa93c1328703d74dccd527ccdd508644167fadb4
3
+ metadata.gz: b00ea9d3603b268193ac2e63c3500a66625713b1
4
+ data.tar.gz: 635a472d86683df65b77b5e54335595870fcab91
5
5
  SHA512:
6
- metadata.gz: 6a19568a9601e924894c89aa3a5deb0cc5912195eea2bad36e1d105ea84492549b21d48562a4e2d20ee7da1507ed2fa1620b1195c221408c3f00e6730654cc73
7
- data.tar.gz: 2c3da24e7b3b1dea080fd3cb09da656bb6633a63b1f3346b2f70c42f721457240d768d9ae98c88d481af63cbfb97492aa7ea4440168282c063f35e0bb919331f
6
+ metadata.gz: 9bd3761ba86251c81c11df692e824c23799e81dca4720c25bb099d8197d81185aa274ca561047fd4bea8e01f0c2693fc2e22fd00f01404f104fb8c6cdb7fac3d
7
+ data.tar.gz: ed8065425179dd1bfab613852a0bcd5ff9001cd9e9bb369351e2a5c1807b3dbd6d180d019d4007e487a5b596f4dfec5d08d912efdc698303ec832bb8417b9169
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fedux_org-stdlib (0.6.55)
4
+ fedux_org-stdlib (0.7.0)
5
5
  activesupport
6
6
 
7
7
  PATH
@@ -237,7 +237,7 @@ module FeduxOrgStdlib
237
237
  self.class._known_options.each do |o|
238
238
  value = public_send(o)
239
239
 
240
- value = if value.blank?
240
+ value = if value.empty? or value.nil?
241
241
  Array('is undefined')
242
242
  elsif value.is_a?(Hash) || value.is_a?(Array)
243
243
  value
@@ -14,8 +14,18 @@ module FeduxOrgStdlib
14
14
  # recommended to use something like `your-application-<plugin>`, where
15
15
  # `your-application-` is the prefix (please mind the dash at the end).
16
16
  #
17
+ # @example PluginManager-class
18
+ #
19
+ # module YourApplication
20
+ # class PluginManager < FeduxOrgStdlib::GemPlugins::PluginManager
21
+ # end
22
+ # end
23
+ #
17
24
  # @example Default prefix
18
25
  #
26
+ # Please make sure you create a class for your plugin manager to make it
27
+ # work. Otherwise give the prefix via parameter - see below.
28
+ #
19
29
  # # -- main.rb --
20
30
  # # main module
21
31
  # module YourApplication
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
  # FeduxOrgStdlib
3
3
  module FeduxOrgStdlib
4
- VERSION = '0.7.0'
4
+ VERSION = '0.7.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fedux_org-stdlib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer