easy_app_helper 1.0.12 → 1.0.13

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: 3cff55825961e2cb5ae6ade6a3cd3c6f850e73e7
4
- data.tar.gz: f371a891e6874165e647a065333fbe506dcc4bdc
3
+ metadata.gz: 8b71142fa2ba5dfa9d6bf4052c52ab9227eef0c8
4
+ data.tar.gz: 7e13f999f27f26437186a1f4bacbc2b8a3ebd9a3
5
5
  SHA512:
6
- metadata.gz: 0b024e94fddf2b435053766509a8c2157eb26498fea8b2719e1663e8aec745e6908059ba007cd2a450a0254ef5080f98683f03687645ebd6e76a33288d99b3d4
7
- data.tar.gz: ffc0ebaa8de0b04b7327d30616ec13e3f4203a70f1adbfd7b5e8d4d1625225485e9de03cac2403ef6b00bc88961dee238ba3dd481968e36380b61232329438b7
6
+ metadata.gz: 6763668e9f6ee9c32dd9c1731964245420af73006bdf43d102b0a3614b03f70fa2000a2b937c0d4bc8d2df01ccbffa6713cf3c41544df9c5031695656d73b667
7
+ data.tar.gz: b00dda6ac57a944b03eaf9ed291251ff156ad0b73dbfb650c37bb677836b416ed2a239370c4ccfa2301e60600a720a6f0bb4976b14c2b1b6dace0b2dd385ba7c
@@ -63,7 +63,11 @@ class EasyAppHelper::Core::Base
63
63
  # @param [String] script_filename
64
64
  # @param [String] app_version
65
65
  # @param [String] app_description
66
- def describes_application(app_name: nil, script_filename: nil, app_version: nil, app_description: nil)
66
+ def describes_application(options = {})
67
+ app_name = options.fetch(:app_name, nil)
68
+ script_filename = options.fetch(:script_filename, nil)
69
+ app_version = options.fetch(:app_version, nil)
70
+ app_description = options.fetch(:app_description, nil)
67
71
  self.app_name = app_name unless app_name.nil?
68
72
  self.app_version = app_version unless app_version.nil?
69
73
  self.app_description = app_description unless app_description.nil?
@@ -6,5 +6,5 @@
6
6
  ################################################################################
7
7
 
8
8
  module EasyAppHelper
9
- EASY_APP_HELPER_VERSION = "1.0.12"
9
+ EASY_APP_HELPER_VERSION = "1.0.13"
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_app_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.12
4
+ version: 1.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - L.Briais
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-11 00:00:00.000000000 Z
11
+ date: 2014-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler