easy_app_helper 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +47 -47
- data/Gemfile +4 -4
- data/LICENSE.txt +22 -22
- data/README.md +498 -498
- data/Rakefile +1 -1
- data/easy_app_helper.gemspec +26 -26
- data/lib/easy_app_helper/core/base.rb +141 -128
- data/lib/easy_app_helper/core/config.rb +203 -203
- data/lib/easy_app_helper/core/logger.rb +111 -103
- data/lib/easy_app_helper/core/merge_policies.rb +37 -37
- data/lib/easy_app_helper/core/places.rb +51 -51
- data/lib/easy_app_helper/module_manager.rb +67 -60
- data/lib/easy_app_helper/version.rb +10 -10
- data/lib/easy_app_helper.rb +20 -20
- data/test/test.yml +7 -7
- data/test/test2_app.rb +33 -33
- data/test/test3_app.rb +90 -90
- data/test/test4_app.rb +35 -35
- data/test/test_app.rb +55 -55
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 819ebd1c1387fafb44f0f1cf423ba465d75b1069
|
4
|
+
data.tar.gz: 950b16c9a1f0aade331156d266a7fc525e06a760
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b1db5e9d30e69df6e445ec6cea02cb59309537ca85a44396e63df0b96ec62b85f08d1868853b9589a56f4df976c19fce19d053db017a603e913d11fc667e10f
|
7
|
+
data.tar.gz: 5b7650d5fff48883a30b3d7b13ecf6e53fcb88a8301a4958dc4a55bc418ef87ff8618427053bce5e218d7a84decc32a549ca3d60eef4261b06ef0a8a4f8e57f0
|
data/.gitignore
CHANGED
@@ -1,47 +1,47 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
.bundle
|
4
|
-
.config
|
5
|
-
.yardoc
|
6
|
-
Gemfile.lock
|
7
|
-
InstalledFiles
|
8
|
-
_yardoc
|
9
|
-
coverage
|
10
|
-
doc/
|
11
|
-
lib/bundler/man
|
12
|
-
pkg
|
13
|
-
rdoc
|
14
|
-
spec/reports
|
15
|
-
test/tmp
|
16
|
-
test/version_tmp
|
17
|
-
tmp
|
18
|
-
# Standard
|
19
|
-
*~
|
20
|
-
# Standard Rails project
|
21
|
-
/tmp/
|
22
|
-
/log/
|
23
|
-
/db/*.sqlite3
|
24
|
-
# SASS CSS generation
|
25
|
-
/public/stylesheets/.sass-cache/
|
26
|
-
# Netbeans
|
27
|
-
/nbproject/
|
28
|
-
# Sublime Text 2 project
|
29
|
-
*.sublime-project
|
30
|
-
*.sublime-workspace
|
31
|
-
*(copie)*
|
32
|
-
# RVM
|
33
|
-
.rvmrc
|
34
|
-
# VisualRuby
|
35
|
-
.vr_settings.yaml
|
36
|
-
# Emacs
|
37
|
-
*#
|
38
|
-
*\#
|
39
|
-
\#*
|
40
|
-
.#*
|
41
|
-
\#*\#
|
42
|
-
# Geany
|
43
|
-
*.geany
|
44
|
-
# RubyMine
|
45
|
-
.idea
|
46
|
-
#RedCar
|
47
|
-
.redcar
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
# Standard
|
19
|
+
*~
|
20
|
+
# Standard Rails project
|
21
|
+
/tmp/
|
22
|
+
/log/
|
23
|
+
/db/*.sqlite3
|
24
|
+
# SASS CSS generation
|
25
|
+
/public/stylesheets/.sass-cache/
|
26
|
+
# Netbeans
|
27
|
+
/nbproject/
|
28
|
+
# Sublime Text 2 project
|
29
|
+
*.sublime-project
|
30
|
+
*.sublime-workspace
|
31
|
+
*(copie)*
|
32
|
+
# RVM
|
33
|
+
.rvmrc
|
34
|
+
# VisualRuby
|
35
|
+
.vr_settings.yaml
|
36
|
+
# Emacs
|
37
|
+
*#
|
38
|
+
*\#
|
39
|
+
\#*
|
40
|
+
.#*
|
41
|
+
\#*\#
|
42
|
+
# Geany
|
43
|
+
*.geany
|
44
|
+
# RubyMine
|
45
|
+
.idea
|
46
|
+
#RedCar
|
47
|
+
.redcar
|
data/Gemfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in easy_app_helper.gemspec
|
4
|
-
gemspec
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in easy_app_helper.gemspec
|
4
|
+
gemspec
|
data/LICENSE.txt
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
Copyright (c) 2013 TODO: Write your name
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
Copyright (c) 2013 TODO: Write your name
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|