ppl 1.14.0 → 1.14.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.
- data/lib/ppl.rb +1 -1
- data/lib/ppl/application/configuration.rb +3 -3
- data/ppl.gemspec +1 -1
- metadata +1 -1
data/lib/ppl.rb
CHANGED
|
@@ -19,8 +19,8 @@ class Ppl::Application::Configuration
|
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
def aliases
|
|
22
|
-
user_aliases = user_configuration["
|
|
23
|
-
default_aliases = default_configuration["
|
|
22
|
+
user_aliases = user_configuration["alias"]
|
|
23
|
+
default_aliases = default_configuration["alias"]
|
|
24
24
|
if user_aliases.nil?
|
|
25
25
|
default_aliases
|
|
26
26
|
else
|
|
@@ -32,7 +32,7 @@ class Ppl::Application::Configuration
|
|
|
32
32
|
|
|
33
33
|
def default_configuration
|
|
34
34
|
{
|
|
35
|
-
"
|
|
35
|
+
"alias" => {},
|
|
36
36
|
"address book" => {
|
|
37
37
|
"path" => Dir.pwd
|
|
38
38
|
},
|
data/ppl.gemspec
CHANGED