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 +4 -4
- data/lib/easy_app_helper/core/base.rb +5 -1
- data/lib/easy_app_helper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b71142fa2ba5dfa9d6bf4052c52ab9227eef0c8
|
|
4
|
+
data.tar.gz: 7e13f999f27f26437186a1f4bacbc2b8a3ebd9a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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(
|
|
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?
|
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.
|
|
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
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|